diff --git a/.app.php.swp b/.app.php.swp new file mode 100644 index 00000000..3fe4e71a Binary files /dev/null and b/.app.php.swp differ diff --git a/.devtools/transifex_download.bat b/.devtools/transifex_download.bat index 7d4ab8db..31d136c8 100644 --- a/.devtools/transifex_download.bat +++ b/.devtools/transifex_download.bat @@ -1,4 +1,4 @@ pushd .. -tx pull --all --minimum-perc=90 +tx pull --all --minimum-perc=80 tx pull --language en_GB popd diff --git a/.devtools/update_dependencies.bat b/.devtools/update_dependencies.bat index d89d3063..f96a25af 100644 --- a/.devtools/update_dependencies.bat +++ b/.devtools/update_dependencies.bat @@ -1,4 +1,4 @@ pushd .. call composer update -yarn upgrade +yarn upgrade --latest popd diff --git a/README.md b/README.md index b9339c74..0768d6c0 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Just unpack the [latest release](https://releases.grocy.info/latest) on your PHP Alternatively clone this repository and install Composer and Yarn dependencies manually. -If you use nginx as your webserver, please include `try_files $uri /index.php;` in your location block. +If you use nginx as your webserver, please include `try_files $uri /index.php$is_args$query_string;` in your location block. If, however, your webserver does not support URL rewriting, set `DISABLE_URL_REWRITING` in `data/config.php` (`Setting('DISABLE_URL_REWRITING', true);`). @@ -45,18 +45,20 @@ You can easily help translating grocy at https://www.transifex.com/grocy/grocy, The [pre-release demo](https://demo-prerelease.grocy.info) is available for any translation which is at least 80 % complete and will pull the translations from Transifex 10 minutes past every hour, so you can have a kind of instant preview of your contributed translations. Thank you! +Also any translation which reached a completion level of 80 % will be included in releases. + ## Things worth to know ### REST API & data model documentation See the integrated Swagger UI instance on [/api](https://demo.grocy.info/api). ### Barcode readers & camera scanning -Some fields also allow to select a value by scanning a barcode. It works best when your barcode reader prefixes every barcode with a letter which is normally not part of a item name (I use a `$`) and sends a `TAB` after a scan. +Some fields (with a barcode icon above) also allow to select a value by scanning a barcode. It works best when your barcode reader prefixes every barcode with a letter which is normally not part of a item name (I use a `$`) and sends a `TAB` after a scan. Additionally it's also possible to use your device camera to scan a barcode by using the camera button on the right side of the corresponding field (powered by [QuaggaJS](https://github.com/serratus/quaggaJS), totally offline / client-side camera stream processing, please note due to browser security restrictions, this only works when serving grocy via a secure connection (`https://`)). Quick video demo: https://www.youtube.com/watch?v=Y5YH6IJFnfc ### Input shorthands for date fields -For (productivity) reasons all date (and time) input fields use the ISO-8601 format regardless of localization. +For (productivity) reasons all date (and time) input (and display) fields use the ISO-8601 format regardless of localization. The following shorthands are available: - `MMDD` gets expanded to the given day on the current year, if > today, or to the given day next year, if < today, in proper notation - Example: `0517` will be converted to `2018-05-17` @@ -90,7 +92,7 @@ If you don't use certain feature sets of grocy (for example if you don't need "C - When the file `data/custom_css.html` exists, the contents of the file will be added just before `` (end of head) on every page ### Demo mode -When the file `data/demo.txt` exists, the application will work in a demo mode which means authentication is disabled and some demo data will be generated during the database schema migration. +When the `MODE` setting is set to `dev`, `demo` or `prerelease`, the application will work in a demo mode which means authentication is disabled and some demo data will be generated during the database schema migration. ### Embedded mode When the file `embedded.txt` exists, it must contain a valid and writable path which will be used as the data directory instead of `data` and authentication will be disabled (used in [grocy-desktop](https://github.com/grocy/grocy-desktop)). diff --git a/app.php b/app.php index c4c54df7..e62fa521 100644 --- a/app.php +++ b/app.php @@ -1,10 +1,13 @@ [ - 'displayErrorDetails' => true, - 'determineRouteBeforeAppMiddleware' => true - ], - 'view' => function($container) - { - return new \Slim\Views\Blade(__DIR__ . '/views', GROCY_DATAPATH . '/viewcache'); - }, - 'LoginControllerInstance' => function($container) - { - return new LoginController($container, 'grocy_session'); - }, - 'UrlManager' => function($container) - { - return new UrlManager(GROCY_BASE_URL); - }, - 'ApiKeyHeaderName' => function($container) - { - return 'GROCY-API-KEY'; - } -]); -$app = new \Slim\App($appContainer); +AppFactory::setContainer(new DI\Container()); +$app = AppFactory::create(); + +$container = $app->getContainer(); +$container->set('view', function(Container $container) +{ + return new Slim\Views\Blade(__DIR__ . '/views', GROCY_DATAPATH . '/viewcache'); +}); +$container->set('LoginControllerInstance', function(Container $container) +{ + return new LoginController($container, 'grocy_session'); +}); +$container->set('UrlManager', function(Container $container) +{ + return new UrlManager(GROCY_BASE_URL); +}); +$container->set('ApiKeyHeaderName', function(Container $container) +{ + return 'GROCY-API-KEY'; +}); // Load routes from separate file require_once __DIR__ . '/routes.php'; +// Add default middleware +$app->addRoutingMiddleware(); +$app->add(new BasePathMiddleware($app)); +$app->addErrorMiddleware(true, false, false); + $app->run(); diff --git a/changelog/55_2.6.0_2020-01-31.md b/changelog/55_2.6.0_2020-01-31.md new file mode 100644 index 00000000..b0d8e8ee --- /dev/null +++ b/changelog/55_2.6.0_2020-01-31.md @@ -0,0 +1,85 @@ +### New feature: Transfer products between locations and edit stock entries +- New menu entry in the sidebar to transfer products (or as a shortcut in the more/context menu per line on the stock overview page) +- New button "Stock entries" in the header of the stock overview page (or as a shortcut in the more/context menu per line) to show the detail stock entries behind each product + - From there you can also edit the stock entries +- (A huge THANK YOU goes to @kriddles for the work on this feature) + +### New feature: Scan mode +- Just scan one product after another, no manual input required and audio feedback is provided +- New switch-button on the purchase and consume page +- When enabled + - The amount will always be filled with `1` after changing/scanning a product + - If all fields could be automatically populated (means for purchase the product has a default best before date set), the transaction is automatically submitted + - If not, a warning is displayed and you can fill in the missing information + - Audio feedback is provided after scanning and on success/error of the transaction +- => Quick video demo: https://www.youtube.com/watch?v=83dm9iD718k + +### New feature: Self produced products +- To a recipe a product can be attached + - This products needs a "Default best before date" +- On using "Consume all ingredients needed by this recipe" and when it has a product attached, one unit of that product (per serving in purchase quantity unit) will be added to stock (with the proper price based on the recipe ingredients) +- (Thanks @kriddles for the intial work on this) + +### New feature: Freeze/Thaw products +- New product options "Default best before days after freezing/thawing" to set how the best before date should be changed on freezing/thawing +- New location option "Is freezer" to indicate if the location is a freezer +- => When moving a product from/to a freezer location, the best before date is changed accordingly +- There is also a new sub feature flag `FEATURE_FLAG_STOCK_PRODUCT_FREEZING` to disable this if you don't need it (defaults to `true`) + +### Stock improvements/fixes +- The productcard gets now also refreshed after a transaction was posted (purchase/consume/etc.) (thanks @kriddles) +- The product field calories (kcal) now also allows decimal numbers +- On the inventory page, "New amount" is now prefilled with the current stock amount of the selected product +- Fixed that entering partial amounts was not possible on the inventory page (only applies if the product option "Allow partial units in stock" is enabled) +- Fixed that on purchase a wrong minimum amount was enforced for products with enabled tare weight handling in combination with different purchase/stock quantity units +- Fixed that the productcard did not load correctly when `FEATURE_FLAG_STOCK_LOCATION_TRACKING` was set to `false` (thanks @kriddles) +- Fixed that the "Add as barcode to existing product" workflow did not work twice when not switching the page inbetween + +### Shopping list improvements/fixes +- Added a compact view to have a better shopping list for shopping trips (new button "Compact view" in the header, additionally this is automatically enabled on mobile devices / when screen width is < 768 px) +- It's now possible to filter for only undone (not striked through) items (new option in the "Filter by status" dropdown) +- Fixed that when `FEATURE_FLAG_SHOPPINGLIST_MULTIPLE_LISTS` was set to `false`, the shopping list appeared empty after some actions + +### Recipe improvements +- When consuming a recipe and if an ingredient is not in stock, but that product has any subproduct which is in stock, this gets now consumed (before consuming was not possible in that case) +- When adding or editing a recipe ingredient, a dialog is now used instead of switching between pages (thanks @kriddles) + +### Meal plan improvements/fixes +- It's now possible to add notes per day (in the dropdown of the add button in the header of each day column) +- It's now possible to products directly (also in the dropdown of the add button in the header of each day column, maybe useful in combination with the new "Self produced products" feature) +- Added that the calories per serving are now also shown +- Added that the total costs and calories per day are displayed in the header of each day column +- Added a new `config.php` setting `MEAL_PLAN_FIRST_DAY_OF_WEEK` which can be used to start the meal plan on a different day (defaults to `CALENDAR_FIRST_DAY_OF_WEEK`, so no changed behavior when not configured) +- Fixed that when `FEATURE_FLAG_STOCK_PRICE_TRACKING` was set to `false`, prices were still shown (thanks @kriddles) +- Fixed that the week costs were missing for the weeks 1 - 9 of a year + +### Calendar improvements +- Improved that meal plan events in the iCal calendar export now contain a link to the appropriate meal plan week in the body of the event (thanks @kriddles) + +### Task fixes +- Fixed that a due date was required when editing an existing task + +### API improvements/fixes +- The endpoint `/stock` now includes also the product object itself (new field/property `product`) (thanks @gsacre) +- The endpoint `/stock/products/{productId}/entries` can now include stock entries of child products (if the given product is a parent product and in addition to the ones of the given product) - new query parameter `include_sub_products` (defaults to `false` so no changed behavior when not supplied) +- New endpoints for the new stock transfer & stock entry edit capabilities +- Fixed that the route `/stock/barcodes/external-lookup/{barcode}` did not work, because the `barcode` argument was expected as a route argument but the route was missing it (thanks @Mikhail5555 and @beetle442002) +- Fixed the response type description of the `/stock/volatile` endpoint + +### General & other improvements/fixes +- It's now possible to keep the screen on always or when a "fullscreen-card" (e. g. used for recipes) is displayed + - New user options in the display settings menu in the top right corner (defaults to disabled) +- Slightly optimized table loading & search performance (thanks @lwis) +- Added that the currently active sidebar menu item is always in view +- Reordered the sidebar menu items a little bit, grouped them by borders and made them a little smaller to waste less space +- Changed/removed some animations (and replaced jQuery UI by [Animate.css](https://daneden.github.io/animate.css/)) to improve responsiveness +- Fixed that also the first column (where in most tables only buttons/menus are displayed) in tables was searched when using the general search field +- Fixed that the meal plan menu entry (sidebar) was not visible when the calendar was disabled (`FEATURE_FLAG_CALENDAR`) (thanks @lwis) +- For integration: If a `GET` parameter `closeAfterCreation` is passed to the product edit page, the window will be closed on save (due to Browser restrictions, this only works when the window was opened from JavaScript) (thanks @Forceu) +- Fixed that the `update.sh` file had wrong line endings (DOS instead of Unix) +- Internal change: Demo mode is now handled via the setting `MODE` instead of checking the existence of the file `data/demo.txt` +- There is now a RSS feed for the changelog, subscribe to get notified about new releases: https://grocy.info/changelog/feed +- New translations: (thanks all the translators) + - Hungarian (demo available at https://hu.demo.grocy.info) + - Portuguese (Brazil) (demo available at https://pt-br.demo.grocy.info) + - Slovak (demo available at https://sk.demo.grocy.info) diff --git a/changelog/55_UNRELEASED_2019-xx-xx.md b/changelog/55_UNRELEASED_2019-xx-xx.md deleted file mode 100644 index 06d9f6e3..00000000 --- a/changelog/55_UNRELEASED_2019-xx-xx.md +++ /dev/null @@ -1,26 +0,0 @@ -### New feature: Transfer products between locations and edit stock entries -- New menu entry in the sidebar to transfer products (or as a shortcut in the more/context menu per line on the stock overview page) -- New menu entry in the more/context menu of stock overview page lines to show the detail stock entries behind the corresponding product - - From there you can also edit the stock entries -- A huge THANK YOU goes to @kriddles for the work on this feature - -## Recipe improvements -- When adding or editing a recipe ingredient, a dialog is now used instead of switching between pages (thanks @kriddles) - -### Meal plan fixes -- Fixed that when `FEATURE_FLAG_STOCK_PRICE_TRACKING` was set to `false`, prices were still shown (thanks @kriddles) - -### Calendar improvements -- Improved that meal plan events in the iCal calendar export now contain a link to the appropriate meal plan week in the body of the event (thanks @kriddles) - -### API improvements/fixes -- Fixed that the route `/stock/barcodes/external-lookup/{barcode}` did not work, because the `barcode` argument was expected as a route argument but the route was missing it (thanks @Mikhail5555 and @beetle442002) -- New endpoints for the stock transfer & stock entry edit capabilities mentioned above - -### General & other improvements/fixes -- Fixed that the meal plan menu entry (sidebar) was not visible when the calendar was disabled (`FEATURE_FLAG_CALENDAR`) (thanks @lwis) -- Slightly optimized table loading & search performance (thanks @lwis) -- For integration: If a `GET` parameter `closeAfterCreation` is passed to the product edit page, the window will be closed on save (due to Browser restrictions, this only works when the window was opened from JavaScript) (thanks @Forceu) -- The `update.sh` file had wrong line endings (DOS instead of Unix) -- New translations: (thanks all the translators) - - Portuguese (Brazil) (demo available at https://pt-br.demo.grocy.info) diff --git a/changelog/56_UNRELEASED_2020-xx-xx.md b/changelog/56_UNRELEASED_2020-xx-xx.md new file mode 100644 index 00000000..0c5f4633 --- /dev/null +++ b/changelog/56_UNRELEASED_2020-xx-xx.md @@ -0,0 +1,36 @@ +### Stock fixes +- Fixed purchase/consume/inventory problems when `FEATURE_FLAG_STOCK_LOCATION_TRACKING` was set to `false` + +### Shopping list improvements/fixes +- Added an option to hide the month-calendar (in the shopping list settings / top right corner settings menu) (defaults to disabled, so please enable this option if you still want to have the month-calendar on the shopping list) +- Optimized the new compact view (there was a little too much white space at the sides of the page) +- Added an option to not switch to the new compact view on mobile devices automatically (in the shopping list settings / top right corner settings menu) (defaults to `false`, so no changed behavior when not configured) (thanks @Forceu) +- Fixed that the "Shopping list to stock workflow" did not work when `FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING` was set to `false` + +### Recipe improvements/fixes +- Optimized the ordering of the inputs on the recipe ingredient edit page (moved "Only check if a single unit is in stock" before the amount) +- Variable ingredient amounts are now marked accordingly on the renedered recipe +- After selecting a recipe on mobile devices, the page now automatically scrolls to the recipe card +- Added the recipes base servings to be displayed on the recipe card and properly named the servings column in the recipes list/table (thanks @kriddles) +- Added that recipe ingredients can now also be displayed grouped by the products product group (additionally to the ingredient group, new option in the recipes settings / top right corner settings menu) (defaults to `false`, so no changed behavior when not configured) (thanks @kriddles) +- Fixed that when editing a recipe ingredient which had "Only check if a single unit is in stock" set, not any quantity unit could be picked and the amount stayed empty +- Fixed that when reloading the "new recipe"-page (or when it gets auto-reloaded due to "Auto reload on external changes" is enabled), for each reload a new recipe was created +- Fixed that the recipe "fullscreen card" was not correctly displayed +- Fixed that nested recipes showed all ingredients of the nested recipes twice +- Fixed that when displaying or consuming a recipe from the meal plan the serving amount was maybe wrong (was the one from the recipe instead the one from the meal plan entry) (thanks @kriddles) +- Fixed that the stock fulfillment counts on the recipe card were maybe wrong if that recipe was also added to the meal plan (thanks @kriddles) + +### Meal plan improvements +- Improved that all add-dialogs can be submitted by using `ENTER` and that the next input is automatically selected after selecting a recipe/product +- Added an edit button to all types of meal plan entries +- When adding a recipe, the serving amount is now prefilled with the one of the selected recipe (thanks @kriddles) +- Fixed that the meal plan not used the full height on mobile devices + +### Calendar fixes +- Fixed to only include events when the corresponding feature flag is enabled (e. g. don't show expiring products when `FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING` is set to `false`) (thanks @kriddles) +- Fixed that the calendar not used the full height on mobile devices + +### General & other improvements/fixes +- Optimized the top navbar height and overall spacing to waste less space +- Replaced the scan-mode-switch-button by a native button because it's less disturbing +- Fixed that the "contextual time ago" of date/time pickers was not displayed diff --git a/composer.json b/composer.json index db8a6303..97941158 100644 --- a/composer.json +++ b/composer.json @@ -1,14 +1,18 @@ { "require": { "php": ">=7.2", - "slim/slim": "^3.12.2", - "morris/lessql": "^0.4.1", + "slim/slim": "^4.0", + "slim/psr7": "^1.0", + "slim/http": "^1.0", + "php-di/php-di": "^6.0", "rubellum/slim-blade-view": "^0.1.1", - "tuupola/cors-middleware": "^1.0.0", - "eluceo/ical": "^0.15.1", - "erusev/parsedown": "^1.7.3", - "gettext/gettext": "^4.6.3", - "gumlet/php-image-resize": "^1.9.2" + "tuupola/cors-middleware": "^1.1", + "selective/basepath": "^0.2.0", + "morris/lessql": "^0.4.1", + "gettext/gettext": "^4.8", + "eluceo/ical": "^0.16.0", + "erusev/parsedown": "^1.7", + "gumlet/php-image-resize": "^1.9" }, "autoload": { "psr-4": { diff --git a/composer.lock b/composer.lock index 819d4515..17d2ca2c 100644 --- a/composer.lock +++ b/composer.lock @@ -4,51 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "eff0f8f394573d15e26d8abd3788ed72", + "content-hash": "b1fde916a45ad371e89da8c603362c0c", "packages": [ - { - "name": "container-interop/container-interop", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://github.com/container-interop/container-interop.git", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "shasum": "" - }, - "require": { - "psr/container": "^1.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Interop\\Container\\": "src/Interop/Container/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", - "homepage": "https://github.com/container-interop/container-interop", - "time": "2017-02-14T19:40:03+00:00" - }, { "name": "doctrine/inflector", - "version": "v1.3.0", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "5527a48b7313d15261292c149e55e26eae771b0a" + "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a", - "reference": "5527a48b7313d15261292c149e55e26eae771b0a", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1", + "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1", "shasum": "" }, "require": { @@ -73,6 +42,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -81,10 +54,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -102,27 +71,27 @@ "singularize", "string" ], - "time": "2018-01-09T20:05:19+00:00" + "time": "2019-10-30T19:59:35+00:00" }, { "name": "eluceo/ical", - "version": "0.15.1", + "version": "0.16.0", "source": { "type": "git", "url": "https://github.com/markuspoerschke/iCal.git", - "reference": "bdd24747587f6f9b10770a7b873a13e273f85f39" + "reference": "97da0d94c9716e65c141066a2d96aa098379721b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/markuspoerschke/iCal/zipball/bdd24747587f6f9b10770a7b873a13e273f85f39", - "reference": "bdd24747587f6f9b10770a7b873a13e273f85f39", + "url": "https://api.github.com/repos/markuspoerschke/iCal/zipball/97da0d94c9716e65c141066a2d96aa098379721b", + "reference": "97da0d94c9716e65c141066a2d96aa098379721b", "shasum": "" }, "require": { - "php": ">=7.0" + "php": ">=7.1" }, "require-dev": { - "phpunit/phpunit": "^6.0" + "phpunit/phpunit": "^7.0" }, "suggest": { "ext-mbstring": "Massive performance enhancement of line folding" @@ -153,20 +122,20 @@ "ics", "php calendar" ], - "time": "2019-08-06T20:33:43+00:00" + "time": "2019-12-29T22:08:56+00:00" }, { "name": "erusev/parsedown", - "version": "1.7.3", + "version": "1.7.4", "source": { "type": "git", "url": "https://github.com/erusev/parsedown.git", - "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7" + "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/erusev/parsedown/zipball/6d893938171a817f4e9bc9e86f2da1e370b7bcd7", - "reference": "6d893938171a817f4e9bc9e86f2da1e370b7bcd7", + "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3", + "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3", "shasum": "" }, "require": { @@ -199,20 +168,72 @@ "markdown", "parser" ], - "time": "2019-03-17T18:48:37+00:00" + "time": "2019-12-30T22:54:17+00:00" }, { - "name": "gettext/gettext", - "version": "v4.6.3", + "name": "fig/http-message-util", + "version": "1.1.4", "source": { "type": "git", - "url": "https://github.com/oscarotero/Gettext.git", - "reference": "70c6ff2fecd275e6ef9cdd542f55939a3d1904d6" + "url": "https://github.com/php-fig/http-message-util.git", + "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/oscarotero/Gettext/zipball/70c6ff2fecd275e6ef9cdd542f55939a3d1904d6", - "reference": "70c6ff2fecd275e6ef9cdd542f55939a3d1904d6", + "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/3242caa9da7221a304b8f84eb9eaddae0a7cf422", + "reference": "3242caa9da7221a304b8f84eb9eaddae0a7cf422", + "shasum": "" + }, + "require": { + "php": "^5.3 || ^7.0" + }, + "suggest": { + "psr/http-message": "The package containing the PSR-7 interfaces" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Fig\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Utility classes and constants for use with PSR-7 (psr/http-message)", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "time": "2020-02-05T20:36:27+00:00" + }, + { + "name": "gettext/gettext", + "version": "v4.8.2", + "source": { + "type": "git", + "url": "https://github.com/php-gettext/Gettext.git", + "reference": "e474f872f2c8636cf53fd283ec4ce1218f3d236a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/e474f872f2c8636cf53fd283ec4ce1218f3d236a", + "reference": "e474f872f2c8636cf53fd283ec4ce1218f3d236a", "shasum": "" }, "require": { @@ -261,31 +282,31 @@ "po", "translation" ], - "time": "2019-07-15T12:56:31+00:00" + "time": "2019-12-02T10:21:14+00:00" }, { "name": "gettext/languages", - "version": "2.5.0", + "version": "2.6.0", "source": { "type": "git", - "url": "https://github.com/mlocati/cldr-to-gettext-plural-rules.git", - "reference": "78db2d17933f0765a102f368a6663f057162ddbd" + "url": "https://github.com/php-gettext/Languages.git", + "reference": "38ea0482f649e0802e475f0ed19fa993bcb7a618" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mlocati/cldr-to-gettext-plural-rules/zipball/78db2d17933f0765a102f368a6663f057162ddbd", - "reference": "78db2d17933f0765a102f368a6663f057162ddbd", + "url": "https://api.github.com/repos/php-gettext/Languages/zipball/38ea0482f649e0802e475f0ed19fa993bcb7a618", + "reference": "38ea0482f649e0802e475f0ed19fa993bcb7a618", "shasum": "" }, "require": { "php": ">=5.3" }, "require-dev": { - "phpunit/phpunit": "^4" + "friendsofphp/php-cs-fixer": "^2.16.0", + "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4" }, "bin": [ - "bin/export-plural-rules", - "bin/export-plural-rules.php" + "bin/export-plural-rules" ], "type": "library", "autoload": { @@ -305,7 +326,7 @@ } ], "description": "gettext languages with plural rules", - "homepage": "https://github.com/mlocati/cldr-to-gettext-plural-rules", + "homepage": "https://github.com/php-gettext/Languages", "keywords": [ "cldr", "i18n", @@ -322,7 +343,7 @@ "translations", "unicode" ], - "time": "2018-11-13T22:06:07+00:00" + "time": "2019-11-13T10:30:21+00:00" }, { "name": "gumlet/php-image-resize", @@ -381,7 +402,7 @@ }, { "name": "illuminate/container", - "version": "v5.8.35", + "version": "v5.8.36", "source": { "type": "git", "url": "https://github.com/illuminate/container.git", @@ -426,7 +447,7 @@ }, { "name": "illuminate/contracts", - "version": "v5.8.35", + "version": "v5.8.36", "source": { "type": "git", "url": "https://github.com/illuminate/contracts.git", @@ -470,7 +491,7 @@ }, { "name": "illuminate/events", - "version": "v5.8.35", + "version": "v5.8.36", "source": { "type": "git", "url": "https://github.com/illuminate/events.git", @@ -515,7 +536,7 @@ }, { "name": "illuminate/filesystem", - "version": "v5.8.35", + "version": "v5.8.36", "source": { "type": "git", "url": "https://github.com/illuminate/filesystem.git", @@ -567,16 +588,16 @@ }, { "name": "illuminate/support", - "version": "v5.8.35", + "version": "v5.8.36", "source": { "type": "git", "url": "https://github.com/illuminate/support.git", - "reference": "e63a495d3bf01654f70def1046fb925c4bb56506" + "reference": "df4af6a32908f1d89d74348624b57e3233eea247" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/illuminate/support/zipball/e63a495d3bf01654f70def1046fb925c4bb56506", - "reference": "e63a495d3bf01654f70def1046fb925c4bb56506", + "url": "https://api.github.com/repos/illuminate/support/zipball/df4af6a32908f1d89d74348624b57e3233eea247", + "reference": "df4af6a32908f1d89d74348624b57e3233eea247", "shasum": "" }, "require": { @@ -624,11 +645,11 @@ ], "description": "The Illuminate Support package.", "homepage": "https://laravel.com", - "time": "2019-09-03T16:36:47+00:00" + "time": "2019-12-12T14:16:47+00:00" }, { "name": "illuminate/view", - "version": "v5.8.35", + "version": "v5.8.36", "source": { "type": "git", "url": "https://github.com/illuminate/view.git", @@ -675,6 +696,64 @@ "homepage": "https://laravel.com", "time": "2019-06-20T13:13:59+00:00" }, + { + "name": "jeremeamia/superclosure", + "version": "2.4.0", + "source": { + "type": "git", + "url": "https://github.com/jeremeamia/super_closure.git", + "reference": "5707d5821b30b9a07acfb4d76949784aaa0e9ce9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/jeremeamia/super_closure/zipball/5707d5821b30b9a07acfb4d76949784aaa0e9ce9", + "reference": "5707d5821b30b9a07acfb4d76949784aaa0e9ce9", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^1.2|^2.0|^3.0|^4.0", + "php": ">=5.4", + "symfony/polyfill-php56": "^1.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0|^5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.4-dev" + } + }, + "autoload": { + "psr-4": { + "SuperClosure\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia", + "role": "Developer" + } + ], + "description": "Serialize Closure objects, including their context and binding", + "homepage": "https://github.com/jeremeamia/super_closure", + "keywords": [ + "closure", + "function", + "lambda", + "parser", + "serializable", + "serialize", + "tokenizer" + ], + "time": "2018-03-21T22:21:57+00:00" + }, { "name": "morris/lessql", "version": "v0.4.1", @@ -781,27 +860,27 @@ }, { "name": "nesbot/carbon", - "version": "2.24.0", + "version": "2.29.1", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "934459c5ac0658bc765ad1e53512c7c77adcac29" + "reference": "e509be5bf2d703390e69e14496d9a1168452b0a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/934459c5ac0658bc765ad1e53512c7c77adcac29", - "reference": "934459c5ac0658bc765ad1e53512c7c77adcac29", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e509be5bf2d703390e69e14496d9a1168452b0a2", + "reference": "e509be5bf2d703390e69e14496d9a1168452b0a2", "shasum": "" }, "require": { "ext-json": "*", "php": "^7.1.8 || ^8.0", - "symfony/translation": "^3.4 || ^4.0" + "symfony/translation": "^3.4 || ^4.0 || ^5.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.14 || ^3.0", "kylekatarnls/multi-tester": "^1.1", - "phpmd/phpmd": "dev-php-7.1-compatibility", + "phpmd/phpmd": "^2.8", "phpstan/phpstan": "^0.11", "phpunit/phpunit": "^7.5 || ^8.0", "squizlabs/php_codesniffer": "^3.4" @@ -811,6 +890,9 @@ ], "type": "library", "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + }, "laravel": { "providers": [ "Carbon\\Laravel\\ServiceProvider" @@ -837,14 +919,14 @@ "homepage": "http://github.com/kylekatarnls" } ], - "description": "A API extension for DateTime that supports 281 different languages.", + "description": "An API extension for DateTime that supports 281 different languages.", "homepage": "http://carbon.nesbot.com", "keywords": [ "date", "datetime", "time" ], - "time": "2019-08-31T16:37:55+00:00" + "time": "2020-01-21T09:36:43+00:00" }, { "name": "nikic/fast-route", @@ -892,6 +974,58 @@ ], "time": "2018-02-13T20:26:39+00:00" }, + { + "name": "nikic/php-parser", + "version": "v4.3.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc", + "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": ">=7.0" + }, + "require-dev": { + "ircmaxell/php-yacc": "0.0.5", + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" + }, + "bin": [ + "bin/php-parse" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.3-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": [ + "parser", + "php" + ], + "time": "2019-11-08T13:50:10+00:00" + }, { "name": "philo/laravel-blade", "version": "v3.1", @@ -934,54 +1068,147 @@ "time": "2015-12-04T09:42:42+00:00" }, { - "name": "pimple/pimple", - "version": "v3.2.3", + "name": "php-di/invoker", + "version": "2.0.0", "source": { "type": "git", - "url": "https://github.com/silexphp/Pimple.git", - "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32" + "url": "https://github.com/PHP-DI/Invoker.git", + "reference": "540c27c86f663e20fe39a24cd72fa76cdb21d41a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/silexphp/Pimple/zipball/9e403941ef9d65d20cba7d54e29fe906db42cf32", - "reference": "9e403941ef9d65d20cba7d54e29fe906db42cf32", + "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/540c27c86f663e20fe39a24cd72fa76cdb21d41a", + "reference": "540c27c86f663e20fe39a24cd72fa76cdb21d41a", "shasum": "" }, "require": { - "php": ">=5.3.0", - "psr/container": "^1.0" + "psr/container": "~1.0" }, "require-dev": { - "symfony/phpunit-bridge": "^3.2" + "athletic/athletic": "~0.1.8", + "phpunit/phpunit": "~4.5" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.2.x-dev" - } - }, "autoload": { - "psr-0": { - "Pimple": "src/" + "psr-4": { + "Invoker\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - } - ], - "description": "Pimple, a simple Dependency Injection Container", - "homepage": "http://pimple.sensiolabs.org", + "description": "Generic and extensible callable invoker", + "homepage": "https://github.com/PHP-DI/Invoker", "keywords": [ - "container", - "dependency injection" + "callable", + "dependency", + "dependency-injection", + "injection", + "invoke", + "invoker" ], - "time": "2018-01-21T07:42:36+00:00" + "time": "2017-03-20T19:28:22+00:00" + }, + { + "name": "php-di/php-di", + "version": "6.0.11", + "source": { + "type": "git", + "url": "https://github.com/PHP-DI/PHP-DI.git", + "reference": "9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620", + "reference": "9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620", + "shasum": "" + }, + "require": { + "jeremeamia/superclosure": "^2.0", + "nikic/php-parser": "^2.0|^3.0|^4.0", + "php": ">=7.0.0", + "php-di/invoker": "^2.0", + "php-di/phpdoc-reader": "^2.0.1", + "psr/container": "^1.0" + }, + "provide": { + "psr/container-implementation": "^1.0" + }, + "require-dev": { + "doctrine/annotations": "~1.2", + "friendsofphp/php-cs-fixer": "^2.4", + "mnapoli/phpunit-easymock": "~1.0", + "ocramius/proxy-manager": "~2.0.2", + "phpstan/phpstan": "^0.9.2", + "phpunit/phpunit": "~6.4" + }, + "suggest": { + "doctrine/annotations": "Install it if you want to use annotations (version ~1.2)", + "ocramius/proxy-manager": "Install it if you want to use lazy injection (version ~2.0)" + }, + "type": "library", + "autoload": { + "psr-4": { + "DI\\": "src/" + }, + "files": [ + "src/functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "The dependency injection container for humans", + "homepage": "http://php-di.org/", + "keywords": [ + "PSR-11", + "container", + "container-interop", + "dependency injection", + "di", + "ioc", + "psr11" + ], + "time": "2019-12-12T07:58:02+00:00" + }, + { + "name": "php-di/phpdoc-reader", + "version": "2.1.1", + "source": { + "type": "git", + "url": "https://github.com/PHP-DI/PhpDocReader.git", + "reference": "15678f7451c020226807f520efb867ad26fbbfcf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/15678f7451c020226807f520efb867ad26fbbfcf", + "reference": "15678f7451c020226807f520efb867ad26fbbfcf", + "shasum": "" + }, + "require": { + "php": ">=5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.6" + }, + "type": "library", + "autoload": { + "psr-4": { + "PhpDocReader\\": "src/PhpDocReader" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)", + "keywords": [ + "phpdoc", + "reflection" + ], + "time": "2019-09-26T11:24:58+00:00" }, { "name": "psr/container", @@ -1242,16 +1469,16 @@ }, { "name": "psr/log", - "version": "1.1.0", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" + "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801", + "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801", "shasum": "" }, "require": { @@ -1260,7 +1487,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { @@ -1285,7 +1512,7 @@ "psr", "psr-3" ], - "time": "2018-11-20T15:27:04+00:00" + "time": "2019-11-01T11:05:21+00:00" }, { "name": "psr/simple-cache", @@ -1335,6 +1562,46 @@ ], "time": "2017-10-23T01:57:42+00:00" }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "time": "2019-03-08T08:55:37+00:00" + }, { "name": "rubellum/slim-blade-view", "version": "0.1.1", @@ -1386,36 +1653,244 @@ "time": "2016-03-11T02:32:00+00:00" }, { - "name": "slim/slim", - "version": "3.12.2", + "name": "selective/basepath", + "version": "0.2.0", "source": { "type": "git", - "url": "https://github.com/slimphp/Slim.git", - "reference": "200c6143f15baa477601879b64ab2326847aac0b" + "url": "https://github.com/selective-php/basepath.git", + "reference": "58566c248279a0035012c393b669619ff3a140ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/slimphp/Slim/zipball/200c6143f15baa477601879b64ab2326847aac0b", - "reference": "200c6143f15baa477601879b64ab2326847aac0b", + "url": "https://api.github.com/repos/selective-php/basepath/zipball/58566c248279a0035012c393b669619ff3a140ee", + "reference": "58566c248279a0035012c393b669619ff3a140ee", "shasum": "" }, "require": { - "container-interop/container-interop": "^1.2", + "php": "^7.1", + "psr/http-server-middleware": "^1.0" + }, + "require-dev": { + "overtrue/phplint": "^1.1", + "phpstan/phpstan-shim": "^0.11", + "phpunit/phpunit": "^7", + "slim/psr7": "^0.6.0", + "slim/slim": "^4.3", + "squizlabs/php_codesniffer": "^3.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Selective\\BasePath\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A URL base path detector for Slim 4", + "homepage": "https://github.com/selective-php/basepath", + "keywords": [ + "basepath", + "slim", + "slim4" + ], + "time": "2019-11-24T21:59:39+00:00" + }, + { + "name": "slim/http", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/slimphp/Slim-Http.git", + "reference": "c2e67ac1680207aa7863fd4721530b01f3436b2e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/slimphp/Slim-Http/zipball/c2e67ac1680207aa7863fd4721530b01f3436b2e", + "reference": "c2e67ac1680207aa7863fd4721530b01f3436b2e", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", "ext-json": "*", "ext-libxml": "*", "ext-simplexml": "*", - "nikic/fast-route": "^1.0", - "php": ">=5.5.0", - "pimple/pimple": "^3.0", - "psr/container": "^1.0", + "php": "^7.2", + "psr/http-factory": "^1.0", "psr/http-message": "^1.0" }, + "provide": { + "psr/http-factory": "^1.0" + }, + "require-dev": { + "adriansuter/php-autoload-override": "^1.0", + "laminas/laminas-diactoros": "^2.0", + "nyholm/psr7": "^1.0", + "php-http/psr7-integration-tests": "dev-master", + "phpstan/phpstan": "^0.10.3", + "phpunit/phpunit": "^8.5", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Slim\\Http\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Josh Lockhart", + "email": "hello@joshlockhart.com", + "homepage": "http://joshlockhart.com" + }, + { + "name": "Andrew Smith", + "email": "a.smith@silentworks.co.uk", + "homepage": "http://silentworks.co.uk" + }, + { + "name": "Rob Allen", + "email": "rob@akrabat.com", + "homepage": "http://akrabat.com" + }, + { + "name": "Pierre Berube", + "email": "pierre@lgse.com", + "homepage": "http://www.lgse.com" + } + ], + "description": "Slim PSR-7 Object Decorators", + "homepage": "http://slimframework.com", + "keywords": [ + "http", + "psr-7", + "psr7" + ], + "time": "2020-01-04T23:05:26+00:00" + }, + { + "name": "slim/psr7", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/slimphp/Slim-Psr7.git", + "reference": "7ca5b5d96687b7c563238715cc80b12675d8b895" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/slimphp/Slim-Psr7/zipball/7ca5b5d96687b7c563238715cc80b12675d8b895", + "reference": "7ca5b5d96687b7c563238715cc80b12675d8b895", + "shasum": "" + }, + "require": { + "fig/http-message-util": "^1.1.2", + "php": "^7.2", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.0", + "ralouphie/getallheaders": "^3" + }, "provide": { "psr/http-message-implementation": "1.0" }, "require-dev": { - "phpunit/phpunit": "^4.0", - "squizlabs/php_codesniffer": "^2.5" + "adriansuter/php-autoload-override": "^1.0", + "ext-json": "*", + "http-interop/http-factory-tests": "^0.6.0", + "php-http/psr7-integration-tests": "dev-master", + "phpstan/phpstan": "^0.12", + "phpunit/phpunit": "^8.5", + "squizlabs/php_codesniffer": "^3.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Slim\\Psr7\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Josh Lockhart", + "email": "hello@joshlockhart.com", + "homepage": "http://joshlockhart.com" + }, + { + "name": "Andrew Smith", + "email": "a.smith@silentworks.co.uk", + "homepage": "http://silentworks.co.uk" + }, + { + "name": "Rob Allen", + "email": "rob@akrabat.com", + "homepage": "http://akrabat.com" + }, + { + "name": "Pierre Berube", + "email": "pierre@lgse.com", + "homepage": "http://www.lgse.com" + } + ], + "description": "Strict PSR-7 implementation", + "homepage": "https://www.slimframework.com", + "keywords": [ + "http", + "psr-7", + "psr7" + ], + "time": "2020-01-04T23:05:43+00:00" + }, + { + "name": "slim/slim", + "version": "4.4.0", + "source": { + "type": "git", + "url": "https://github.com/slimphp/Slim.git", + "reference": "207acac048652a35d4762a737d59e317aedc02df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/slimphp/Slim/zipball/207acac048652a35d4762a737d59e317aedc02df", + "reference": "207acac048652a35d4762a737d59e317aedc02df", + "shasum": "" + }, + "require": { + "ext-json": "*", + "nikic/fast-route": "^1.3", + "php": "^7.2", + "psr/container": "^1.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.0", + "psr/http-server-handler": "^1.0", + "psr/http-server-middleware": "^1.0" + }, + "require-dev": { + "adriansuter/php-autoload-override": "^1.0", + "ext-simplexml": "*", + "guzzlehttp/psr7": "^1.5", + "http-interop/http-factory-guzzle": "^1.0", + "laminas/laminas-diactoros": "^2.1", + "nyholm/psr7": "^1.1", + "nyholm/psr7-server": "^0.3.0", + "phpspec/prophecy": "^1.10", + "phpstan/phpstan": "^0.11.5", + "phpunit/phpunit": "^8.5", + "slim/http": "^0.7", + "slim/psr7": "^0.3", + "squizlabs/php_codesniffer": "^3.5" + }, + "suggest": { + "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware", + "ext-xml": "Needed to support XML format in BodyParsingMiddleware", + "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim", + "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information." }, "type": "library", "autoload": { @@ -1443,6 +1918,11 @@ "email": "rob@akrabat.com", "homepage": "http://akrabat.com" }, + { + "name": "Pierre Berube", + "email": "pierre@lgse.com", + "homepage": "http://www.lgse.com" + }, { "name": "Gabriel Manricks", "email": "gmanricks@me.com", @@ -1450,27 +1930,27 @@ } ], "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs", - "homepage": "https://slimframework.com", + "homepage": "https://www.slimframework.com", "keywords": [ "api", "framework", "micro", "router" ], - "time": "2019-08-20T18:46:05+00:00" + "time": "2020-01-05T03:51:47+00:00" }, { "name": "symfony/debug", - "version": "v4.3.4", + "version": "v4.4.4", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "afcdea44a2e399c1e4b52246ec8d54c715393ced" + "reference": "20236471058bbaa9907382500fc14005c84601f0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/afcdea44a2e399c1e4b52246ec8d54c715393ced", - "reference": "afcdea44a2e399c1e4b52246ec8d54c715393ced", + "url": "https://api.github.com/repos/symfony/debug/zipball/20236471058bbaa9907382500fc14005c84601f0", + "reference": "20236471058bbaa9907382500fc14005c84601f0", "shasum": "" }, "require": { @@ -1481,12 +1961,12 @@ "symfony/http-kernel": "<3.4" }, "require-dev": { - "symfony/http-kernel": "~3.4|~4.0" + "symfony/http-kernel": "^3.4|^4.0|^5.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -1513,20 +1993,20 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2019-08-20T14:27:59+00:00" + "time": "2020-01-25T12:44:29+00:00" }, { "name": "symfony/finder", - "version": "v4.3.4", + "version": "v4.4.4", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "86c1c929f0a4b24812e1eb109262fc3372c8e9f2" + "reference": "3a50be43515590faf812fbd7708200aabc327ec3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/86c1c929f0a4b24812e1eb109262fc3372c8e9f2", - "reference": "86c1c929f0a4b24812e1eb109262fc3372c8e9f2", + "url": "https://api.github.com/repos/symfony/finder/zipball/3a50be43515590faf812fbd7708200aabc327ec3", + "reference": "3a50be43515590faf812fbd7708200aabc327ec3", "shasum": "" }, "require": { @@ -1535,7 +2015,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -1562,20 +2042,20 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2019-08-14T12:26:46+00:00" + "time": "2020-01-04T13:00:46+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.12.0", + "version": "v1.13.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17" + "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", - "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7b4aab9743c30be783b73de055d24a39cf4b954f", + "reference": "7b4aab9743c30be783b73de055d24a39cf4b954f", "shasum": "" }, "require": { @@ -1587,7 +2067,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.13-dev" } }, "autoload": { @@ -1621,46 +2101,155 @@ "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2019-11-27T14:18:11+00:00" }, { - "name": "symfony/translation", - "version": "v4.3.4", + "name": "symfony/polyfill-php56", + "version": "v1.13.1", "source": { "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "28498169dd334095fa981827992f3a24d50fed0f" + "url": "https://github.com/symfony/polyfill-php56.git", + "reference": "53dd1cdf3cb986893ccf2b96665b25b3abb384f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/28498169dd334095fa981827992f3a24d50fed0f", - "reference": "28498169dd334095fa981827992f3a24d50fed0f", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/53dd1cdf3cb986893ccf2b96665b25b3abb384f4", + "reference": "53dd1cdf3cb986893ccf2b96665b25b3abb384f4", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": ">=5.3.3", + "symfony/polyfill-util": "~1.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.13-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php56\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "time": "2019-11-27T13:56:44+00:00" + }, + { + "name": "symfony/polyfill-util", + "version": "v1.13.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-util.git", + "reference": "964a67f293b66b95883a5ed918a65354fcd2258f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/964a67f293b66b95883a5ed918a65354fcd2258f", + "reference": "964a67f293b66b95883a5ed918a65354fcd2258f", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.13-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Util\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony utilities for portability of PHP codes", + "homepage": "https://symfony.com", + "keywords": [ + "compat", + "compatibility", + "polyfill", + "shim" + ], + "time": "2019-11-27T13:56:44+00:00" + }, + { + "name": "symfony/translation", + "version": "v5.0.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "28e1054f1ea26c63762d9260c37cb1056ea62dbb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/28e1054f1ea26c63762d9260c37cb1056ea62dbb", + "reference": "28e1054f1ea26c63762d9260c37cb1056ea62dbb", + "shasum": "" + }, + "require": { + "php": "^7.2.5", "symfony/polyfill-mbstring": "~1.0", - "symfony/translation-contracts": "^1.1.6" + "symfony/translation-contracts": "^2" }, "conflict": { - "symfony/config": "<3.4", - "symfony/dependency-injection": "<3.4", - "symfony/yaml": "<3.4" + "symfony/config": "<4.4", + "symfony/dependency-injection": "<5.0", + "symfony/http-kernel": "<5.0", + "symfony/twig-bundle": "<5.0", + "symfony/yaml": "<4.4" }, "provide": { - "symfony/translation-implementation": "1.0" + "symfony/translation-implementation": "2.0" }, "require-dev": { "psr/log": "~1.0", - "symfony/config": "~3.4|~4.0", - "symfony/console": "~3.4|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/finder": "~2.8|~3.0|~4.0", - "symfony/http-kernel": "~3.4|~4.0", - "symfony/intl": "~3.4|~4.0", - "symfony/service-contracts": "^1.1.2", - "symfony/var-dumper": "~3.4|~4.0", - "symfony/yaml": "~3.4|~4.0" + "symfony/config": "^4.4|^5.0", + "symfony/console": "^4.4|^5.0", + "symfony/dependency-injection": "^5.0", + "symfony/finder": "^4.4|^5.0", + "symfony/http-kernel": "^5.0", + "symfony/intl": "^4.4|^5.0", + "symfony/service-contracts": "^1.1.2|^2", + "symfony/yaml": "^4.4|^5.0" }, "suggest": { "psr/log-implementation": "To use logging capability in translator", @@ -1670,7 +2259,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -1697,24 +2286,24 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2019-08-26T08:55:16+00:00" + "time": "2020-01-21T08:40:24+00:00" }, { "name": "symfony/translation-contracts", - "version": "v1.1.6", + "version": "v2.0.1", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "325b17c24f3ee23cbecfa63ba809c6d89b5fa04a" + "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/325b17c24f3ee23cbecfa63ba809c6d89b5fa04a", - "reference": "325b17c24f3ee23cbecfa63ba809c6d89b5fa04a", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/8cc682ac458d75557203b2f2f14b0b92e1c744ed", + "reference": "8cc682ac458d75557203b2f2f14b0b92e1c744ed", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": "^7.2.5" }, "suggest": { "symfony/translation-implementation": "" @@ -1722,7 +2311,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-master": "2.0-dev" } }, "autoload": { @@ -1754,7 +2343,7 @@ "interoperability", "standards" ], - "time": "2019-08-02T12:15:04+00:00" + "time": "2019-11-18T17:27:11+00:00" }, { "name": "tuupola/callable-handler", @@ -1811,16 +2400,16 @@ }, { "name": "tuupola/cors-middleware", - "version": "1.0.0", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/tuupola/cors-middleware.git", - "reference": "f8bee9b47729a36892c680c457ff824c04cfae70" + "reference": "a043f4f52b902ee8902f95d28aae05013a7180fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tuupola/cors-middleware/zipball/f8bee9b47729a36892c680c457ff824c04cfae70", - "reference": "f8bee9b47729a36892c680c457ff824c04cfae70", + "url": "https://api.github.com/repos/tuupola/cors-middleware/zipball/a043f4f52b902ee8902f95d28aae05013a7180fc", + "reference": "a043f4f52b902ee8902f95d28aae05013a7180fc", "shasum": "" }, "require": { @@ -1835,7 +2424,7 @@ "codedungeon/phpunit-result-printer": "^0.23.2", "equip/dispatch": "^2.0", "overtrue/phplint": "^1.0", - "phpstan/phpstan": "^0.11.4", + "phpstan/phpstan": "^0.11.15", "phpunit/phpunit": "^7.4", "squizlabs/php_codesniffer": "^3.3.1", "zendframework/zend-diactoros": "^1.0|^2.0" @@ -1866,7 +2455,7 @@ "psr-15", "psr-7" ], - "time": "2019-06-04T06:54:19+00:00" + "time": "2019-10-30T11:18:16+00:00" }, { "name": "tuupola/http-factory", diff --git a/config-dist.php b/config-dist.php index 9df72f0b..76e50a5c 100644 --- a/config-dist.php +++ b/config-dist.php @@ -15,7 +15,8 @@ # Either "production", "dev", "demo" or "prerelease" -# ("demo" and "prerelease" is reserved to be used only on the offical demo instances) +# When not "production", authentication will be disabled and +# demo data will be populated during database migrations Setting('MODE', 'production'); # Either "en" or "de" or the directory name of @@ -32,7 +33,7 @@ Setting('CALENDAR_SHOW_WEEK_OF_YEAR', true); # To keep it simple: grocy does not handle any currency conversions, # this here is used to format all money values, -# so doesn't matter really matter, but should be the +# so doesn't really matter, but should be the # ISO 4217 code of the currency ("USD", "EUR", "GBP", etc.) Setting('CURRENCY', 'USD'); @@ -61,6 +62,11 @@ Setting('DISABLE_AUTH', false); # Set this to true if you want to disable the ability to scan a barcode via the device camera (Browser API) Setting('DISABLE_BROWSER_BARCODE_CAMERA_SCANNING', false); +# Set this if you want to have a different start day for the weekly meal plan view, +# leave empty to use CALENDAR_FIRST_DAY_OF_WEEK (see above) +# Needs to be a number where Sunday = 0, Monday = 1 and so forth +Setting('MEAL_PLAN_FIRST_DAY_OF_WEEK', ''); + # Default user settings # These settings can be changed per user, here the defaults @@ -74,6 +80,10 @@ DefaultUserSetting('auto_night_mode_time_range_to', "07:00"); // Format HH:mm DefaultUserSetting('auto_night_mode_time_range_goes_over_midnight', true); // If the time range above goes over midnight DefaultUserSetting('currently_inside_night_mode_range', false); // If we're currently inside of night mode time range (this is not user configurable, but stored as a user setting because it's evaluated client side to be able to use the client time instead of the maybe different server time) +# Keep screen on settings +DefaultUserSetting('keep_screen_on', false); // Keep the screen always on +DefaultUserSetting('keep_screen_on_when_fullscreen_card', false); // Keep the screen on when a "fullscreen-card" is displayed + # Stock settings DefaultUserSetting('product_presets_location_id', -1); // Default location id for new products (-1 means no location is preset) DefaultUserSetting('product_presets_product_group_id', -1); // Default product group id for new products (-1 means no product group is preset) @@ -81,6 +91,16 @@ DefaultUserSetting('product_presets_qu_id', -1); // Default quantity unit id for DefaultUserSetting('stock_expring_soon_days', 5); DefaultUserSetting('stock_default_purchase_amount', 0); DefaultUserSetting('stock_default_consume_amount', 1); +DefaultUserSetting('scan_mode_consume_enabled', false); +DefaultUserSetting('scan_mode_purchase_enabled', false); + +# Shopping list settings +DefaultUserSetting('shopping_list_to_stock_workflow_auto_submit_when_prefilled', false); // Automatically do the booking using the last price and the amount of the shopping list item, if the product has "Default best before days" set +DefaultUserSetting('shopping_list_show_calendar', false); +DefaultUserSetting('shopping_list_disable_auto_compact_view_on_mobile', false); + +# Recipe settings +DefaultUserSetting('recipe_ingredients_group_by_product_group', false); // Group recipe ingredients by their product group # Chores settings DefaultUserSetting('chores_due_soon_days', 5); @@ -98,11 +118,6 @@ DefaultUserSetting('auto_reload_on_db_change', true); # Show a clock in the header next to the logo or not DefaultUserSetting('show_clock_in_header', false); -# Shopping list to stock workflow: -# Automatically do the booking using the last price and the amount -# of the shopping list item, if the product has "Default best before days" set -DefaultUserSetting('shopping_list_to_stock_workflow_auto_submit_when_prefilled', false); - # Feature flags # grocy was initially about "stock management for your household", many other things @@ -124,6 +139,7 @@ Setting('FEATURE_FLAG_STOCK_PRICE_TRACKING', true); Setting('FEATURE_FLAG_STOCK_LOCATION_TRACKING', true); Setting('FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING', true); Setting('FEATURE_FLAG_STOCK_PRODUCT_OPENED_TRACKING', true); +Setting('FEATURE_FLAG_STOCK_PRODUCT_FREEZING', true); Setting('FEATURE_FLAG_SHOPPINGLIST_MULTIPLE_LISTS', true); Setting('FEATURE_FLAG_CHORES_ASSIGNMENTS', true); diff --git a/controllers/BaseApiController.php b/controllers/BaseApiController.php index cd61776c..aff11fe5 100644 --- a/controllers/BaseApiController.php +++ b/controllers/BaseApiController.php @@ -5,7 +5,7 @@ namespace Grocy\Controllers; class BaseApiController extends BaseController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } @@ -21,20 +21,36 @@ class BaseApiController extends BaseController return $this->OpenApiSpec; } - protected function ApiResponse($data) + protected function ApiResponse(\Psr\Http\Message\ResponseInterface $response, $data) { - return json_encode($data); + $response->getBody()->write(json_encode($data)); + return $response; } - protected function EmptyApiResponse($response, $status = 204) + protected function EmptyApiResponse(\Psr\Http\Message\ResponseInterface $response, $status = 204) { return $response->withStatus($status); } - protected function GenericErrorResponse($response, $errorMessage, $status = 400) + protected function GenericErrorResponse(\Psr\Http\Message\ResponseInterface $response, $errorMessage, $status = 400) { return $response->withStatus($status)->withJson(array( 'error_message' => $errorMessage )); } + + protected function getApiKeyService() + { + return ApiKeyService::getInstance(); + } + + protected function getChoresService() + { + return ChoresService::getInstance(); + } + + protected function getFilesService() + { + return FilesService::getInstance(); + } } diff --git a/controllers/BaseController.php b/controllers/BaseController.php index 65e08384..1643db57 100644 --- a/controllers/BaseController.php +++ b/controllers/BaseController.php @@ -10,7 +10,7 @@ use \Grocy\Services\UserfieldsService; class BaseController { - public function __construct(\Slim\Container $container) { + public function __construct(\DI\Container $container) { $this->AppContainer = $container; } @@ -36,11 +36,11 @@ class BaseController $container->view->set('U', function($relativePath, $isResource = false) use($container) { - return $container->UrlManager->ConstructUrl($relativePath, $isResource); + return $container->get('UrlManager')->ConstructUrl($relativePath, $isResource); }); $embedded = false; - if (isset($container->request->getQueryParams()['embedded'])) + if (isset($_GET['embedded'])) { $embedded = true; } @@ -56,7 +56,7 @@ class BaseController } $container->view->set('featureFlags', $constants); - $this->AppContainer = $container; + $this->AppContainer = $container; return $this->AppContainer->view->render($response, $page, $data); } @@ -106,6 +106,41 @@ class BaseController return ApplicationService::getInstance(); } + protected function getBatteriesService() + { + return BatteriesService::getInstance(); + } + + protected function getCalendarService() + { + return CalendarService::getInstance(); + } + + private function getSessionService() + { + return SessionService::getInstance(); + } + + protected function getRecipesService() + { + return RecipesService::getInstance(); + } + + protected function getStockService() + { + return StockService::getInstance(); + } + + protected function getTasksService() + { + return TasksService::getInstance(); + } + + protected function getUsersService() + { + return UsersService::getInstance(); + } + private $userfieldsService = null; protected function getUserfieldsService() @@ -127,6 +162,6 @@ class BaseController } return $this->usersService; } - + protected $AppContainer; } diff --git a/controllers/BatteriesApiController.php b/controllers/BatteriesApiController.php index d8e068aa..412ad14c 100644 --- a/controllers/BatteriesApiController.php +++ b/controllers/BatteriesApiController.php @@ -6,23 +6,12 @@ use \Grocy\Services\BatteriesService; class BatteriesApiController extends BaseApiController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $BatteriesService = null; - - protected function getBatteriesService() - { - if($this->BatteriesService == null) - { - $this->BatteriesService = BatteriesService::getInstance(); - } - return $this->BatteriesService; - } - - public function TrackChargeCycle(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function TrackChargeCycle(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); @@ -35,7 +24,7 @@ class BatteriesApiController extends BaseApiController } $chargeCycleId = $this->getBatteriesService()->TrackChargeCycle($args['batteryId'], $trackedTime); - return $this->ApiResponse($this->getDatabase()->battery_charge_cycles($chargeCycleId)); + return $this->ApiResponse($response, $this->getDatabase()->battery_charge_cycles($chargeCycleId)); } catch (\Exception $ex) { @@ -43,11 +32,11 @@ class BatteriesApiController extends BaseApiController } } - public function BatteryDetails(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function BatteryDetails(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - return $this->ApiResponse($this->getBatteriesService()->GetBatteryDetails($args['batteryId'])); + return $this->ApiResponse($response, $this->getBatteriesService()->GetBatteryDetails($args['batteryId'])); } catch (\Exception $ex) { @@ -55,16 +44,16 @@ class BatteriesApiController extends BaseApiController } } - public function Current(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Current(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { - return $this->ApiResponse($this->getBatteriesService()->GetCurrent()); + return $this->ApiResponse($response, $this->getBatteriesService()->GetCurrent()); } - public function UndoChargeCycle(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UndoChargeCycle(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - $this->ApiResponse($this->getBatteriesService()->UndoChargeCycle($args['chargeCycleId'])); + $this->ApiResponse($response, $this->getBatteriesService()->UndoChargeCycle($args['chargeCycleId'])); return $this->EmptyApiResponse($response); } catch (\Exception $ex) diff --git a/controllers/BatteriesController.php b/controllers/BatteriesController.php index dfc4950a..601877fe 100644 --- a/controllers/BatteriesController.php +++ b/controllers/BatteriesController.php @@ -6,23 +6,12 @@ use \Grocy\Services\BatteriesService; class BatteriesController extends BaseController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $BatteriesService = null; - - protected function getBatteriesService() - { - if($this->BatteriesService == null) - { - $this->BatteriesService = BatteriesService::getInstance(); - } - return $this->BatteriesService; - } - - public function Overview(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Overview(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $usersService = $this->getUsersService(); $nextXDays = $usersService->GetUserSettings(GROCY_USER_ID)['batteries_due_soon_days']; @@ -36,14 +25,14 @@ class BatteriesController extends BaseController ]); } - public function TrackChargeCycle(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function TrackChargeCycle(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'batterytracking', [ 'batteries' => $this->getDatabase()->batteries()->orderBy('name') ]); } - public function BatteriesList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function BatteriesList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'batteries', [ 'batteries' => $this->getDatabase()->batteries()->orderBy('name'), @@ -52,7 +41,7 @@ class BatteriesController extends BaseController ]); } - public function BatteryEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function BatteryEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['batteryId'] == 'new') { @@ -71,7 +60,7 @@ class BatteriesController extends BaseController } } - public function Journal(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Journal(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'batteriesjournal', [ 'chargeCycles' => $this->getDatabase()->battery_charge_cycles()->orderBy('tracked_time', 'DESC'), @@ -79,7 +68,7 @@ class BatteriesController extends BaseController ]); } - public function BatteriesSettings(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function BatteriesSettings(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'batteriessettings'); } diff --git a/controllers/CalendarApiController.php b/controllers/CalendarApiController.php index 8b4e19c4..cd587322 100644 --- a/controllers/CalendarApiController.php +++ b/controllers/CalendarApiController.php @@ -7,34 +7,12 @@ use \Grocy\Services\ApiKeyService; class CalendarApiController extends BaseApiController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $CalendarService = null; - - protected function getCalendarService() - { - if($this->CalendarService == null) - { - $this->CalendarService = CalendarService::getInstance(); - } - return $this->CalendarService; - } - - protected $ApiKeyService = null; - - protected function getApiKeyService() - { - if($this->ApiKeyService == null) - { - $this->ApiKeyService = ApiKeyService::getInstance(); - } - return $this->ApiKeyService; - } - - public function Ical(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Ical(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -72,12 +50,12 @@ class CalendarApiController extends BaseApiController } } - public function IcalSharingLink(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function IcalSharingLink(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - return $this->ApiResponse(array( - 'url' => $this->AppContainer->UrlManager->ConstructUrl('/api/calendar/ical?secret=' . $this->getApiKeyService()->GetOrCreateApiKey(ApiKeyService::API_KEY_TYPE_SPECIAL_PURPOSE_CALENDAR_ICAL)) + return $this->ApiResponse($response, array( + 'url' => $this->AppContainer->get('UrlManager')->ConstructUrl('/api/calendar/ical?secret=' . $this->getApiKeyService()->GetOrCreateApiKey(ApiKeyService::API_KEY_TYPE_SPECIAL_PURPOSE_CALENDAR_ICAL)) )); } catch (\Exception $ex) diff --git a/controllers/CalendarController.php b/controllers/CalendarController.php index 9031c03d..ef273532 100644 --- a/controllers/CalendarController.php +++ b/controllers/CalendarController.php @@ -6,23 +6,12 @@ use \Grocy\Services\CalendarService; class CalendarController extends BaseController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $CalendarService = null; - - protected function getCalendarService() - { - if($this->CalendarService == null) - { - $this->CalendarService = CalendarService::getInstance(); - } - return $this->CalendarService; - } - - public function Overview(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Overview(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'calendar', [ 'fullcalendarEventSources' => $this->getCalendarService()->GetEvents() diff --git a/controllers/ChoresApiController.php b/controllers/ChoresApiController.php index 7788994c..8e8d84ee 100644 --- a/controllers/ChoresApiController.php +++ b/controllers/ChoresApiController.php @@ -6,23 +6,12 @@ use \Grocy\Services\ChoresService; class ChoresApiController extends BaseApiController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $ChoresService = null; - - protected function getChoresService() - { - if($this->ChoresService == null) - { - $this->ChoresService = ChoresService::getInstance(); - } - return $this->ChoresService; - } - - public function TrackChoreExecution(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function TrackChoreExecution(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); @@ -41,7 +30,7 @@ class ChoresApiController extends BaseApiController } $choreExecutionId = $this->getChoresService()->TrackChore($args['choreId'], $trackedTime, $doneBy); - return $this->ApiResponse($this->getDatabase()->chores_log($choreExecutionId)); + return $this->ApiResponse($response, $this->getDatabase()->chores_log($choreExecutionId)); } catch (\Exception $ex) { @@ -49,11 +38,11 @@ class ChoresApiController extends BaseApiController } } - public function ChoreDetails(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ChoreDetails(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - return $this->ApiResponse($this->getChoresService()->GetChoreDetails($args['choreId'])); + return $this->ApiResponse($response, $this->getChoresService()->GetChoreDetails($args['choreId'])); } catch (\Exception $ex) { @@ -61,16 +50,16 @@ class ChoresApiController extends BaseApiController } } - public function Current(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Current(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { - return $this->ApiResponse($this->getChoresService()->GetCurrent()); + return $this->ApiResponse($response, $this->getChoresService()->GetCurrent()); } - public function UndoChoreExecution(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UndoChoreExecution(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - $this->ApiResponse($this->getChoresService()->UndoChoreExecution($args['executionId'])); + $this->ApiResponse($response, $this->getChoresService()->UndoChoreExecution($args['executionId'])); return $this->EmptyApiResponse($response); } catch (\Exception $ex) @@ -79,7 +68,7 @@ class ChoresApiController extends BaseApiController } } - public function CalculateNextExecutionAssignments(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function CalculateNextExecutionAssignments(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { diff --git a/controllers/ChoresController.php b/controllers/ChoresController.php index b5dd7207..93f7544a 100644 --- a/controllers/ChoresController.php +++ b/controllers/ChoresController.php @@ -6,23 +6,12 @@ use \Grocy\Services\ChoresService; class ChoresController extends BaseController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $ChoresService = null; - - protected function getChoresService() - { - if($this->ChoresService == null) - { - $this->ChoresService = ChoresService::getInstance(); - } - return $this->ChoresService; - } - - public function Overview(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Overview(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $usersService = $this->getUsersService(); $nextXDays = $usersService->GetUserSettings(GROCY_USER_ID)['chores_due_soon_days']; @@ -37,7 +26,7 @@ class ChoresController extends BaseController ]); } - public function TrackChoreExecution(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function TrackChoreExecution(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'choretracking', [ 'chores' => $this->getDatabase()->chores()->orderBy('name'), @@ -45,7 +34,7 @@ class ChoresController extends BaseController ]); } - public function ChoresList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ChoresList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'chores', [ 'chores' => $this->getDatabase()->chores()->orderBy('name'), @@ -54,7 +43,7 @@ class ChoresController extends BaseController ]); } - public function Journal(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Journal(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'choresjournal', [ 'choresLog' => $this->getDatabase()->chores_log()->orderBy('tracked_time', 'DESC'), @@ -63,7 +52,7 @@ class ChoresController extends BaseController ]); } - public function ChoreEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ChoreEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $usersService = getUsersService(); $users = $usersService->GetUsersAsDto(); @@ -93,7 +82,7 @@ class ChoresController extends BaseController } } - public function ChoresSettings(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ChoresSettings(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'choressettings'); } diff --git a/controllers/EquipmentController.php b/controllers/EquipmentController.php index d30e231a..80dc7a19 100644 --- a/controllers/EquipmentController.php +++ b/controllers/EquipmentController.php @@ -4,14 +4,14 @@ namespace Grocy\Controllers; class EquipmentController extends BaseController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } protected $UserfieldsService; - public function Overview(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Overview(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'equipment', [ 'equipment' => $this->getDatabase()->equipment()->orderBy('name'), @@ -20,7 +20,7 @@ class EquipmentController extends BaseController ]); } - public function EditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function EditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['equipmentId'] == 'new') { diff --git a/controllers/FilesApiController.php b/controllers/FilesApiController.php index 2fc192fe..b12bce38 100644 --- a/controllers/FilesApiController.php +++ b/controllers/FilesApiController.php @@ -6,23 +6,12 @@ use \Grocy\Services\FilesService; class FilesApiController extends BaseApiController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $FilesService = null; - - protected function getFilesService() - { - if($this->FilesService == null) - { - $this->FilesService = FilesService::getInstance(); - } - return $this->FilesService; - } - - public function UploadFile(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UploadFile(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -46,7 +35,7 @@ class FilesApiController extends BaseApiController } } - public function ServeFile(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ServeFile(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -104,7 +93,7 @@ class FilesApiController extends BaseApiController } } - public function DeleteFile(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function DeleteFile(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -117,7 +106,7 @@ class FilesApiController extends BaseApiController throw new \Exception('Invalid filename'); } - $filePath = $this->getFilesService->GetFilePath($args['group'], $fileName); + $filePath = $this->getFilesService()->GetFilePath($args['group'], $fileName); if (file_exists($filePath)) { unlink($filePath); diff --git a/controllers/GenericEntityApiController.php b/controllers/GenericEntityApiController.php index 203ea5fe..efbee609 100644 --- a/controllers/GenericEntityApiController.php +++ b/controllers/GenericEntityApiController.php @@ -4,16 +4,16 @@ namespace Grocy\Controllers; class GenericEntityApiController extends BaseApiController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - public function GetObjects(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function GetObjects(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($this->IsValidEntity($args['entity']) && !$this->IsEntityWithPreventedListing($args['entity'])) { - return $this->ApiResponse($this->getDatabase()->{$args['entity']}()); + return $this->ApiResponse($response, $this->getDatabase()->{$args['entity']}()); } else { @@ -21,11 +21,11 @@ class GenericEntityApiController extends BaseApiController } } - public function GetObject(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function GetObject(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($this->IsValidEntity($args['entity']) && !$this->IsEntityWithPreventedListing($args['entity'])) { - return $this->ApiResponse($this->getDatabase()->{$args['entity']}($args['objectId'])); + return $this->ApiResponse($response, $this->getDatabase()->{$args['entity']}($args['objectId'])); } else { @@ -33,7 +33,7 @@ class GenericEntityApiController extends BaseApiController } } - public function AddObject(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function AddObject(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($this->IsValidEntity($args['entity'])) { @@ -49,7 +49,7 @@ class GenericEntityApiController extends BaseApiController $newRow = $this->getDatabase()->{$args['entity']}()->createRow($requestBody); $newRow->save(); $success = $newRow->isClean(); - return $this->ApiResponse(array( + return $this->ApiResponse($response, array( 'created_object_id' => $this->getDatabase()->lastInsertId() )); } @@ -64,7 +64,7 @@ class GenericEntityApiController extends BaseApiController } } - public function EditObject(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function EditObject(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($this->IsValidEntity($args['entity'])) { @@ -93,7 +93,7 @@ class GenericEntityApiController extends BaseApiController } } - public function DeleteObject(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function DeleteObject(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($this->IsValidEntity($args['entity'])) { @@ -108,13 +108,13 @@ class GenericEntityApiController extends BaseApiController } } - public function SearchObjects(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function SearchObjects(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($this->IsValidEntity($args['entity']) && !$this->IsEntityWithPreventedListing($args['entity'])) { try { - return $this->ApiResponse($this->getDatabase()->{$args['entity']}()->where('name LIKE ?', '%' . $args['searchString'] . '%')); + return $this->ApiResponse($response, $this->getDatabase()->{$args['entity']}()->where('name LIKE ?', '%' . $args['searchString'] . '%')); } catch (\PDOException $ex) { @@ -127,11 +127,11 @@ class GenericEntityApiController extends BaseApiController } } - public function GetUserfields(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function GetUserfields(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - return $this->ApiResponse($this->getUserfieldsService()->GetValues($args['entity'], $args['objectId'])); + return $this->ApiResponse($response, $this->getUserfieldsService()->GetValues($args['entity'], $args['objectId'])); } catch (\Exception $ex) { @@ -139,7 +139,7 @@ class GenericEntityApiController extends BaseApiController } } - public function SetUserfields(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function SetUserfields(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); @@ -166,6 +166,6 @@ class GenericEntityApiController extends BaseApiController private function IsEntityWithPreventedListing($entity) { - return in_array($entity, $this->getOpenApiSpec()->components->internalSchemas->ExposedEntitiesPreventListing->enum); + return !in_array($entity, $this->getOpenApiSpec()->components->internalSchemas->ExposedEntityButNoListing->enum); } } diff --git a/controllers/GenericEntityController.php b/controllers/GenericEntityController.php index 7340c850..e11edf5f 100644 --- a/controllers/GenericEntityController.php +++ b/controllers/GenericEntityController.php @@ -4,12 +4,12 @@ namespace Grocy\Controllers; class GenericEntityController extends BaseController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - public function UserfieldsList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UserfieldsList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'userfields', [ 'userfields' => $this->getUserfieldsService()->GetAllFields(), @@ -17,14 +17,14 @@ class GenericEntityController extends BaseController ]); } - public function UserentitiesList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UserentitiesList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'userentities', [ 'userentities' => $this->getDatabase()->userentities()->orderBy('name') ]); } - public function UserobjectsList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UserobjectsList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $userentity = $this->getDatabase()->userentities()->where('name = :1', $args['userentityName'])->fetch(); @@ -36,7 +36,7 @@ class GenericEntityController extends BaseController ]); } - public function UserfieldEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UserfieldEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['userfieldId'] == 'new') { @@ -57,7 +57,7 @@ class GenericEntityController extends BaseController } } - public function UserentityEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UserentityEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['userentityId'] == 'new') { @@ -74,7 +74,7 @@ class GenericEntityController extends BaseController } } - public function UserobjectEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UserobjectEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $userentity = $this->getDatabase()->userentities()->where('name = :1', $args['userentityName'])->fetch(); diff --git a/controllers/LoginController.php b/controllers/LoginController.php index 100041f1..388f3364 100644 --- a/controllers/LoginController.php +++ b/controllers/LoginController.php @@ -8,25 +8,14 @@ use \Grocy\Services\DemoDataGeneratorService; class LoginController extends BaseController { - public function __construct(\Slim\Container $container, string $sessionCookieName) + public function __construct(\DI\Container $container, string $sessionCookieName) { parent::__construct($container); $this->SessionCookieName = $sessionCookieName; } - - protected $SessionService = null; protected $SessionCookieName; - private function getSessionService() - { - if($this->SessionsService == null) - { - $this->SessionService = SessionService::getInstance(); - } - return $this->SessionService; - } - - public function ProcessLogin(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ProcessLogin(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $postParams = $request->getParsedBody(); if (isset($postParams['username']) && isset($postParams['password'])) @@ -47,28 +36,28 @@ class LoginController extends BaseController )); } - return $response->withRedirect($this->AppContainer->UrlManager->ConstructUrl('/')); + return $response->withRedirect($this->AppContainer->get('UrlManager')->ConstructUrl('/')); } else { - return $response->withRedirect($this->AppContainer->UrlManager->ConstructUrl('/login?invalid=true')); + return $response->withRedirect($this->AppContainer->get('UrlManager')->ConstructUrl('/login?invalid=true')); } } else { - return $response->withRedirect($this->AppContainer->UrlManager->ConstructUrl('/login?invalid=true')); + return $response->withRedirect($this->AppContainer->get('UrlManager')->ConstructUrl('/login?invalid=true')); } } - public function LoginPage(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function LoginPage(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'login'); } - public function Logout(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Logout(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $this->getSessionService()->RemoveSession($_COOKIE[$this->SessionCookieName]); - return $response->withRedirect($this->AppContainer->UrlManager->ConstructUrl('/')); + return $response->withRedirect($this->AppContainer->get('UrlManager')->ConstructUrl('/')); } public function GetSessionCookieName() diff --git a/controllers/OpenApiController.php b/controllers/OpenApiController.php index 504c7b66..982cb33a 100644 --- a/controllers/OpenApiController.php +++ b/controllers/OpenApiController.php @@ -7,40 +7,29 @@ use \Grocy\Services\ApiKeyService; class OpenApiController extends BaseApiController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $ApiKeyService = null; - - protected function getApiKeyService() - { - if($this->ApiKeyService == null) - { - $this->ApiKeyService = ApiKeyService::getInstance(); - } - return $this->ApiKeyService; - } - - public function DocumentationUi(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function DocumentationUi(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->render($response, 'openapiui'); } - public function DocumentationSpec(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function DocumentationSpec(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $applicationService = $this->getApplicationService; $versionInfo = $applicationService->GetInstalledVersion(); $this->getOpenApiSpec()->info->version = $versionInfo->Version; - $this->getOpenApiSpec()->info->description = str_replace('PlaceHolderManageApiKeysUrl', $this->AppContainer->UrlManager->ConstructUrl('/manageapikeys'), $this->getOpenApiSpec()->info->description); - $this->getOpenApiSpec()->servers[0]->url = $this->AppContainer->UrlManager->ConstructUrl('/api'); + $this->getOpenApiSpec()->info->description = str_replace('PlaceHolderManageApiKeysUrl', $this->AppContainer->get('UrlManager')->ConstructUrl('/manageapikeys'), $this->getOpenApiSpec()->info->description); + $this->getOpenApiSpec()->servers[0]->url = $this->AppContainer->get('UrlManager')->ConstructUrl('/api'); - return $this->ApiResponse($this->getOpenApiSpec()); + return $this->ApiResponse($response, $this->getOpenApiSpec()); } - public function ApiKeysList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ApiKeysList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'manageapikeys', [ 'apiKeys' => $this->getDatabase()->api_keys(), @@ -48,10 +37,10 @@ class OpenApiController extends BaseApiController ]); } - public function CreateNewApiKey(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function CreateNewApiKey(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $newApiKey = $this->getApiKeyService()->CreateApiKey(); $newApiKeyId = $this->getApiKeyService()->GetApiKeyId($newApiKey); - return $response->withRedirect($this->AppContainer->UrlManager->ConstructUrl("/manageapikeys?CreatedApiKeyId=$newApiKeyId")); + return $response->withRedirect($this->AppContainer->get('UrlManager')->ConstructUrl("/manageapikeys?CreatedApiKeyId=$newApiKeyId")); } } diff --git a/controllers/RecipesApiController.php b/controllers/RecipesApiController.php index 8e11095b..cfacdfca 100644 --- a/controllers/RecipesApiController.php +++ b/controllers/RecipesApiController.php @@ -6,23 +6,12 @@ use \Grocy\Services\RecipesService; class RecipesApiController extends BaseApiController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $RecipesService = null; - - protected function getRecipesService() - { - if($this->RecipesService == null) - { - $this->RecipesService = RecipesService::getInstance(); - } - return $this->RecipesService; - } - - public function AddNotFulfilledProductsToShoppingList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function AddNotFulfilledProductsToShoppingList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); $excludedProductIds = null; @@ -36,7 +25,7 @@ class RecipesApiController extends BaseApiController return $this->EmptyApiResponse($response); } - public function ConsumeRecipe(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ConsumeRecipe(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -49,13 +38,13 @@ class RecipesApiController extends BaseApiController } } - public function GetRecipeFulfillment(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function GetRecipeFulfillment(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { if(!isset($args['recipeId'])) { - return $this->ApiResponse($this->getRecipesService()->GetRecipesResolved()); + return $this->ApiResponse($response, $this->getRecipesService()->GetRecipesResolved()); } $recipeResolved = FindObjectInArrayByPropertyValue($this->getRecipesService()->GetRecipesResolved(), 'recipe_id', $args['recipeId']); @@ -65,7 +54,7 @@ class RecipesApiController extends BaseApiController } else { - return $this->ApiResponse($recipeResolved); + return $this->ApiResponse($response, $recipeResolved); } } catch (\Exception $ex) diff --git a/controllers/RecipesController.php b/controllers/RecipesController.php index fc67e933..fd90632c 100644 --- a/controllers/RecipesController.php +++ b/controllers/RecipesController.php @@ -3,36 +3,19 @@ namespace Grocy\Controllers; use \Grocy\Services\RecipesService; +use \Grocy\Services\StockService; use \Grocy\Services\UserfieldsService; class RecipesController extends BaseController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $RecipesService = null; - - protected function getRecipesService() + public function Overview(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { - if($this->RecipesService == null) - { - $this->RecipesService = RecipesService::getInstance(); - } - return $this->RecipesService; - } - - public function Overview(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) - { - if (isset($request->getQueryParams()['include-internal'])) - { - $recipes = $this->getDatabase()->recipes()->orderBy('name'); - } - else - { - $recipes = $this->getDatabase()->recipes()->where('type', RecipesService::RECIPE_TYPE_NORMAL)->orderBy('name'); - } + $recipes = $this->getDatabase()->recipes()->where('type', RecipesService::RECIPE_TYPE_NORMAL)->orderBy('name'); $recipesResolved = $this->getRecipesService()->GetRecipesResolved(); $selectedRecipe = null; @@ -40,20 +23,20 @@ class RecipesController extends BaseController if (isset($request->getQueryParams()['recipe'])) { $selectedRecipe = $this->getDatabase()->recipes($request->getQueryParams()['recipe']); - $selectedRecipePositionsResolved = $this->getDatabase()->recipes_pos_resolved()->where('recipe_id', $request->getQueryParams()['recipe'])->orderBy('ingredient_group'); + $selectedRecipePositionsResolved = $this->getDatabase()->recipes_pos_resolved()->where('recipe_id = :1 AND is_nested_recipe_pos = 0', $request->getQueryParams()['recipe'])->orderBy('ingredient_group', 'ASC', 'product_group', 'ASC'); } else { foreach ($recipes as $recipe) { $selectedRecipe = $recipe; - $selectedRecipePositionsResolved = $this->getDatabase()->recipes_pos_resolved()->where('recipe_id', $recipe->id)->orderBy('ingredient_group'); + $selectedRecipePositionsResolved = $this->getDatabase()->recipes_pos_resolved()->where('recipe_id = :1 AND is_nested_recipe_pos = 0', $recipe->id)->orderBy('ingredient_group', 'ASC', 'product_group', 'ASC'); break; } } $selectedRecipeSubRecipes = $this->getDatabase()->recipes()->where('id IN (SELECT includes_recipe_id FROM recipes_nestings_resolved WHERE recipe_id = :1 AND includes_recipe_id != :1)', $selectedRecipe->id)->orderBy('name')->fetchAll(); - $selectedRecipeSubRecipesPositions = $this->getDatabase()->recipes_pos_resolved()->where('recipe_id = :1', $selectedRecipe->id)->orderBy('ingredient_group')->fetchAll(); + $selectedRecipeSubRecipesPositions = $this->getDatabase()->recipes_pos_resolved()->where('recipe_id = :1', $selectedRecipe->id)->orderBy('ingredient_group', 'ASC', 'product_group', 'ASC')->fetchAll(); $includedRecipeIdsAbsolute = array(); $includedRecipeIdsAbsolute[] = $selectedRecipe->id; @@ -65,7 +48,7 @@ class RecipesController extends BaseController return $this->renderPage($response, 'recipes', [ 'recipes' => $recipes, 'recipesResolved' => $recipesResolved, - 'recipePositionsResolved' => $this->getDatabase()->recipes_pos_resolved(), + 'recipePositionsResolved' => $this->getDatabase()->recipes_pos_resolved()->where('recipe_type', RecipesService::RECIPE_TYPE_NORMAL), 'selectedRecipe' => $selectedRecipe, 'selectedRecipePositionsResolved' => $selectedRecipePositionsResolved, 'products' => $this->getDatabase()->products(), @@ -81,7 +64,7 @@ class RecipesController extends BaseController ]); } - public function RecipeEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function RecipeEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $recipeId = $args['recipeId']; if ($recipeId == 'new') @@ -98,7 +81,7 @@ class RecipesController extends BaseController 'recipe' => $this->getDatabase()->recipes($recipeId), 'recipePositions' => $this->getDatabase()->recipes_pos()->where('recipe_id', $recipeId), 'mode' => 'edit', - 'products' => $this->getDatabase()->products(), + 'products' => $this->getDatabase()->products()->orderBy('name'),, 'quantityunits' => $this->getDatabase()->quantity_units(), 'recipePositionsResolved' => $this->getRecipesService()->GetRecipesPosResolved(), 'recipesResolved' => $this->getRecipesService()->GetRecipesResolved(), @@ -109,7 +92,7 @@ class RecipesController extends BaseController ]); } - public function RecipePosEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function RecipePosEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['recipePosId'] == 'new') { @@ -135,10 +118,15 @@ class RecipesController extends BaseController } } - public function MealPlan(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function RecipesSettings(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) + { + return $this->renderPage($response, 'recipessettings'); + } + + public function MealPlan(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $recipes = $this->getDatabase()->recipes()->where('type', RecipesService::RECIPE_TYPE_NORMAL)->fetchAll(); - + $events = array(); foreach($this->getDatabase()->meal_plan() as $mealPlanEntry) { @@ -149,13 +137,21 @@ class RecipesController extends BaseController $title = $recipe->name; } + $productDetails = null; + if ($mealPlanEntry['product_id'] !== null) + { + $productDetails = $this->getStockService()->GetProductDetails($mealPlanEntry['product_id']); + } + $events[] = array( 'id' => $mealPlanEntry['id'], 'title' => $title, 'start' => $mealPlanEntry['day'], 'date_format' => 'date', 'recipe' => json_encode($recipe), - 'mealPlanEntry' => json_encode($mealPlanEntry) + 'mealPlanEntry' => json_encode($mealPlanEntry), + 'type' => $mealPlanEntry['type'], + 'productDetails' => json_encode($productDetails) ); } @@ -163,7 +159,10 @@ class RecipesController extends BaseController 'fullcalendarEventSources' => $events, 'recipes' => $recipes, 'internalRecipes' => $this->getDatabase()->recipes()->whereNot('type', RecipesService::RECIPE_TYPE_NORMAL)->fetchAll(), - 'recipesResolved' => $this->getRecipesService()->GetRecipesResolved() + 'recipesResolved' => $this->getRecipesService()->GetRecipesResolved(), + 'products' => $this->getDatabase()->products()->orderBy('name'), + 'quantityUnits' => $this->getDatabase()->quantity_units()->orderBy('name'), + 'quantityUnitConversionsResolved' => $this->getDatabase()->quantity_unit_conversions_resolved() ]); } } diff --git a/controllers/StockApiController.php b/controllers/StockApiController.php index 06649965..651b7f81 100644 --- a/controllers/StockApiController.php +++ b/controllers/StockApiController.php @@ -6,27 +6,16 @@ use \Grocy\Services\StockService; class StockApiController extends BaseApiController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $StockService = null; - - protected function getStockService() - { - if($this->StockService == null) - { - $this->StockService = StockService::getInstance(); - } - return $this->StockService; - } - - public function ProductDetails(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ProductDetails(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - return $this->ApiResponse($this->getStockService()->GetProductDetails($args['productId'])); + return $this->ApiResponse($response, $this->getStockService()->GetProductDetails($args['productId'])); } catch (\Exception $ex) { @@ -34,12 +23,12 @@ class StockApiController extends BaseApiController } } - public function ProductDetailsByBarcode(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ProductDetailsByBarcode(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { $productId = $this->getStockService()->GetProductIdFromBarcode($args['barcode']); - return $this->ApiResponse($this->getStockService()->GetProductDetails($productId)); + return $this->ApiResponse($response, $this->getStockService()->GetProductDetails($productId)); } catch (\Exception $ex) { @@ -47,11 +36,11 @@ class StockApiController extends BaseApiController } } - public function ProductPriceHistory(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ProductPriceHistory(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - return $this->ApiResponse($this->getStockService()->GetProductPriceHistory($args['productId'])); + return $this->ApiResponse($response, $this->getStockService()->GetProductPriceHistory($args['productId'])); } catch (\Exception $ex) { @@ -59,7 +48,7 @@ class StockApiController extends BaseApiController } } - public function AddProduct(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function AddProduct(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); @@ -100,7 +89,7 @@ class StockApiController extends BaseApiController } $bookingId = $this->getStockService()->AddProduct($args['productId'], $requestBody['amount'], $bestBeforeDate, $transactionType, date('Y-m-d'), $price, $locationId); - return $this->ApiResponse($this->getDatabase()->stock_log($bookingId)); + return $this->ApiResponse($response $this->getDatabase()->stock_log($bookingId)); } catch (\Exception $ex) { @@ -108,7 +97,7 @@ class StockApiController extends BaseApiController } } - public function AddProductByBarcode(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function AddProductByBarcode(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -121,7 +110,7 @@ class StockApiController extends BaseApiController } } - public function EditStock(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function EditStockEntry(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); @@ -132,11 +121,6 @@ class StockApiController extends BaseApiController throw new \Exception('Request body could not be parsed (probably invalid JSON format or missing/wrong Content-Type header)'); } - if (!array_key_exists('stock_row_id', $requestBody)) - { - throw new \Exception('A stock row id is required'); - } - if (!array_key_exists('amount', $requestBody)) { throw new \Exception('An amount is required'); @@ -160,8 +144,8 @@ class StockApiController extends BaseApiController $locationId = $requestBody['location_id']; } - $bookingId = $this->StockService->EditStock($requestBody['stock_row_id'], $requestBody['amount'], $bestBeforeDate, $locationId, $price); - return $this->ApiResponse($this->Database->stock_log($bookingId)); + $bookingId = $this->getStockService()->EditStockEntry($args['entryId'], $requestBody['amount'], $bestBeforeDate, $locationId, $price, $requestBody['open'], $requestBody['purchased_date']); + return $this->ApiResponse($response, $this->getDatabase()->stock_log($bookingId)); } catch (\Exception $ex) { @@ -169,7 +153,7 @@ class StockApiController extends BaseApiController } } - public function TransferProduct(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function TransferProduct(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); @@ -201,8 +185,8 @@ class StockApiController extends BaseApiController $specificStockEntryId = $requestBody['stock_entry_id']; } - $bookingId = $this->StockService->TransferProduct($args['productId'], $requestBody['amount'], $requestBody['location_id_from'], $requestBody['location_id_to'], $specificStockEntryId); - return $this->ApiResponse($this->Database->stock_log($bookingId)); + $bookingId = $this->getStockService()->TransferProduct($args['productId'], $requestBody['amount'], $requestBody['location_id_from'], $requestBody['location_id_to'], $specificStockEntryId); + return $this->ApiResponse($response, $this->getDatabase()->stock_log($bookingId)); } catch (\Exception $ex) { @@ -210,11 +194,11 @@ class StockApiController extends BaseApiController } } - public function TransferProductByBarcode(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function TransferProductByBarcode(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - $args['productId'] = $this->StockService->GetProductIdFromBarcode($args['barcode']); + $args['productId'] = $this->getStockService()->GetProductIdFromBarcode($args['barcode']); return $this->TransferProduct($request, $response, $args); } catch (\Exception $ex) @@ -223,7 +207,7 @@ class StockApiController extends BaseApiController } } - public function ConsumeProduct(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ConsumeProduct(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); @@ -272,7 +256,7 @@ class StockApiController extends BaseApiController } $bookingId = $this->getStockService()->ConsumeProduct($args['productId'], $requestBody['amount'], $spoiled, $transactionType, $specificStockEntryId, $recipeId, $locationId); - return $this->ApiResponse($this->getDatabase()->stock_log($bookingId)); + return $this->ApiResponse($response, $this->getDatabase()->stock_log($bookingId)); } catch (\Exception $ex) { @@ -281,7 +265,7 @@ class StockApiController extends BaseApiController return $result; } - public function ConsumeProductByBarcode(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ConsumeProductByBarcode(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -294,7 +278,7 @@ class StockApiController extends BaseApiController } } - public function InventoryProduct(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function InventoryProduct(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); @@ -329,7 +313,7 @@ class StockApiController extends BaseApiController } $bookingId = $this->getStockService()->InventoryProduct($args['productId'], $requestBody['new_amount'], $bestBeforeDate, $locationId, $price); - return $this->ApiResponse($this->getDatabase()->stock_log($bookingId)); + return $this->ApiResponse($response, $this->getDatabase()->stock_log($bookingId)); } catch (\Exception $ex) { @@ -337,7 +321,7 @@ class StockApiController extends BaseApiController } } - public function InventoryProductByBarcode(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function InventoryProductByBarcode(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -350,7 +334,7 @@ class StockApiController extends BaseApiController } } - public function OpenProduct(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function OpenProduct(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); @@ -373,7 +357,7 @@ class StockApiController extends BaseApiController } $bookingId = $this->getStockService()->OpenProduct($args['productId'], $requestBody['amount'], $specificStockEntryId); - return $this->ApiResponse($this->getDatabase()->stock_log($bookingId)); + return $this->ApiResponse($response, $this->getDatabase()->stock_log($bookingId)); } catch (\Exception $ex) { @@ -381,7 +365,7 @@ class StockApiController extends BaseApiController } } - public function OpenProductByBarcode(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function OpenProductByBarcode(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -394,12 +378,12 @@ class StockApiController extends BaseApiController } } - public function CurrentStock(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function CurrentStock(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { - return $this->ApiResponse($this->getStockService()->GetCurrentStock()); + return $this->ApiResponse($response, $this->getStockService()->GetCurrentStock()); } - public function CurrentVolatilStock(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function CurrentVolatileStock(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $nextXDays = 5; if (isset($request->getQueryParams()['expiring_days']) && !empty($request->getQueryParams()['expiring_days']) && is_numeric($request->getQueryParams()['expiring_days'])) @@ -410,14 +394,14 @@ class StockApiController extends BaseApiController $expiringProducts = $this->getStockService()->GetExpiringProducts($nextXDays, true); $expiredProducts = $this->getStockService()->GetExpiringProducts(-1); $missingProducts = $this->getStockService()->GetMissingProducts(); - return $this->ApiResponse(array( + return $this->ApiResponse($response, array( 'expiring_products' => $expiringProducts, 'expired_products' => $expiredProducts, 'missing_products' => $missingProducts )); } - public function AddMissingProductsToShoppingList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function AddMissingProductsToShoppingList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -438,7 +422,7 @@ class StockApiController extends BaseApiController } } - public function ClearShoppingList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ClearShoppingList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -460,7 +444,7 @@ class StockApiController extends BaseApiController } - public function AddProductToShoppingList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function AddProductToShoppingList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -501,7 +485,7 @@ class StockApiController extends BaseApiController } } - public function RemoveProductFromShoppingList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function RemoveProductFromShoppingList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -537,7 +521,7 @@ class StockApiController extends BaseApiController } } - public function ExternalBarcodeLookup(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ExternalBarcodeLookup(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -547,7 +531,7 @@ class StockApiController extends BaseApiController $addFoundProduct = true; } - return $this->ApiResponse($this->getStockService()->ExternalBarcodeLookup($args['barcode'], $addFoundProduct)); + return $this->ApiResponse($response, $this->getStockService()->ExternalBarcodeLookup($args['barcode'], $addFoundProduct)); } catch (\Exception $ex) { @@ -555,11 +539,11 @@ class StockApiController extends BaseApiController } } - public function UndoBooking(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UndoBooking(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - $this->ApiResponse($this->StockService->UndoBooking($args['bookingId'])); + $this->ApiResponse($response, $this->StockService->UndoBooking($args['bookingId'])); return $this->EmptyApiResponse($response); } catch (\Exception $ex) @@ -568,11 +552,11 @@ class StockApiController extends BaseApiController } } - public function UndoTransaction(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UndoTransaction(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - $this->ApiResponse($this->StockService->UndoTransaction($args['transactionId'])); + $this->ApiResponse($response, $this->StockService->UndoTransaction($args['transactionId'])); return $this->EmptyApiResponse($response); } catch (\Exception $ex) @@ -581,17 +565,28 @@ class StockApiController extends BaseApiController } } - public function ProductStockEntries(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ProductStockEntries(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { - return $this->ApiResponse($this->getStockService()->GetProductStockEntries($args['productId'])); + $allowSubproductSubstitution = false; + if (isset($request->getQueryParams()['include_sub_products']) && filter_var($request->getQueryParams()['include_sub_products'], FILTER_VALIDATE_BOOLEAN)) + { + $allowSubproductSubstitution = true; + } + + return $this->ApiResponse($response, $this->StockService->GetProductStockEntries($args['productId'], false, $allowSubproductSubstitution)); } - public function ProductStockLocations(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ProductStockLocations(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { - return $this->ApiResponse($this->StockService->GetProductStockLocations($args['productId'])); + return $this->ApiResponse($response, $this->getStockService()->GetProductStockEntries($args['productId'])); } - public function StockBooking(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function StockEntry(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) + { + return $this->ApiResponse($response, $this->StockService->GetStockEntry($args['entryId'])); + } + + public function StockBooking(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -602,7 +597,7 @@ class StockApiController extends BaseApiController throw new \Exception('Stock booking does not exist'); } - return $this->ApiResponse($stockLogRow); + return $this->ApiResponse($response, $stockLogRow); } catch (\Exception $ex) { @@ -610,18 +605,18 @@ class StockApiController extends BaseApiController } } - public function StockTransactions(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function StockTransactions(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - $transactionRows = $this->Database->stock_log()->where('transaction_id = :1', $args['transactionId'])->fetchAll(); + $transactionRows = $this->getDatabase()->stock_log()->where('transaction_id = :1', $args['transactionId'])->fetchAll(); if (count($transactionRows) === 0) { throw new \Exception('No transaction was found by the given transaction id'); } - return $this->ApiResponse($transactionRows); + return $this->ApiResponse($response, $transactionRows); } catch (\Exception $ex) { diff --git a/controllers/StockController.php b/controllers/StockController.php index 98ebbc85..02351b73 100644 --- a/controllers/StockController.php +++ b/controllers/StockController.php @@ -8,23 +8,17 @@ use \Grocy\Services\UserfieldsService; class StockController extends BaseController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $StockService = null; - protected function getStockService() { - if($this->StockService == null) - { - $this->StockService = StockService::getInstance(); - } - return $this->StockService; + return StockService::getInstance(); } - public function Overview(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Overview(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $usersService = $this->getUsersService(); $nextXDays = $usersService->GetUserSettings(GROCY_USER_ID)['stock_expring_soon_days']; @@ -43,26 +37,24 @@ class StockController extends BaseController ]); } - public function Detail(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Stockentries(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $usersService = new UsersService(); $nextXDays = $usersService->GetUserSettings(GROCY_USER_ID)['stock_expring_soon_days']; - return $this->AppContainer->view->render($response, 'stockdetail', [ - 'products' => $this->Database->products()->orderBy('name'), - 'quantityunits' => $this->Database->quantity_units()->orderBy('name'), - 'locations' => $this->Database->locations()->orderBy('name'), - 'currentStockDetail' => $this->Database->stock()->orderBy('product_id'), - 'currentStockLocations' => $this->StockService->GetCurrentStockLocations(), - 'missingProducts' => $this->StockService->GetMissingProducts(), + return $this->AppContainer->view($response, 'stockentries', [ + 'products' => $this->getDatabase(()->products()->orderBy('name'), + 'quantityunits' => $this->getDatabase()->quantity_units()->orderBy('name'), + 'locations' => $this->getDatabase()->locations()->orderBy('name'), + 'stockEntries' => $this->getDatabase()->stock()->orderBy('product_id'), + 'currentStockLocations' => $this->getStockService()->GetCurrentStockLocations(), 'nextXDays' => $nextXDays, - 'productGroups' => $this->Database->product_groups()->orderBy('name'), - 'userfields' => $this->UserfieldsService->GetFields('products'), - 'userfieldValues' => $this->UserfieldsService->GetAllValues('products') + 'userfields' => $this->getUserfieldsService()->GetFields('products'), + 'userfieldValues' => $this->getUserfieldsService()->GetAllValues('products') ]); } - public function Purchase(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Purchase(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'purchase', [ 'products' => $this->getDatabase()->products()->orderBy('name'), @@ -70,7 +62,7 @@ class StockController extends BaseController ]); } - public function Consume(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Consume(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'consume', [ 'products' => $this->getDatabase()->products()->orderBy('name'), @@ -79,7 +71,7 @@ class StockController extends BaseController ]); } - public function Transfer(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Transfer(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->AppContainer->view->render($response, 'transfer', [ 'products' => $this->getDatabase()->products()->orderBy('name'), @@ -88,7 +80,7 @@ class StockController extends BaseController ]); } - public function Inventory(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Inventory(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'inventory', [ 'products' => $this->getDatabase()->products()->orderBy('name'), @@ -96,15 +88,16 @@ class StockController extends BaseController ]); } - public function StockEdit(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function StockEntryEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { - return $this->AppContainer->view->render($response, 'stockedit', [ - 'products' => $this->Database->products()->orderBy('name'), - 'locations' => $this->Database->locations()->orderBy('name') + return $this->AppContainer->view->render($response, 'stockentryform', [ + 'stockEntry' => $this->getDatabase()->stock()->where('id', $args['entryId'])->fetch(), + 'products' => $this->getDatabase()->products()->orderBy('name'), + 'locations' => $this->getDatabase()->locations()->orderBy('name') ]); } - public function ShoppingList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ShoppingList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $listId = 1; if (isset($request->getQueryParams()['list'])) @@ -125,7 +118,7 @@ class StockController extends BaseController ]); } - public function ProductsList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ProductsList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'products', [ 'products' => $this->getDatabase()->products()->orderBy('name'), @@ -137,7 +130,7 @@ class StockController extends BaseController ]); } - public function StockSettings(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function StockSettings(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'stocksettings', [ 'locations' => $this->getDatabase()->locations()->orderBy('name'), @@ -146,7 +139,7 @@ class StockController extends BaseController ]); } - public function LocationsList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function LocationsList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'locations', [ 'locations' => $this->getDatabase()->locations()->orderBy('name'), @@ -155,7 +148,7 @@ class StockController extends BaseController ]); } - public function ProductGroupsList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ProductGroupsList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'productgroups', [ 'productGroups' => $this->getDatabase()->product_groups()->orderBy('name'), @@ -165,7 +158,7 @@ class StockController extends BaseController ]); } - public function QuantityUnitsList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function QuantityUnitsList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'quantityunits', [ 'quantityunits' => $this->getDatabase()->quantity_units()->orderBy('name'), @@ -174,7 +167,7 @@ class StockController extends BaseController ]); } - public function ProductEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ProductEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['productId'] == 'new') { @@ -206,7 +199,7 @@ class StockController extends BaseController } } - public function LocationEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function LocationEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['locationId'] == 'new') { @@ -225,7 +218,7 @@ class StockController extends BaseController } } - public function ProductGroupEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ProductGroupEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['productGroupId'] == 'new') { @@ -244,7 +237,7 @@ class StockController extends BaseController } } - public function QuantityUnitEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function QuantityUnitEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['quantityunitId'] == 'new') { @@ -271,7 +264,7 @@ class StockController extends BaseController } } - public function ShoppingListItemEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ShoppingListItemEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['itemId'] == 'new') { @@ -292,7 +285,7 @@ class StockController extends BaseController } } - public function ShoppingListEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ShoppingListEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['listId'] == 'new') { @@ -309,7 +302,12 @@ class StockController extends BaseController } } - public function Journal(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function ShoppingListSettings(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) + { + return $this->View->render($response, 'shoppinglistsettings'); + } + + public function Journal(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'stockjournal', [ 'stockLog' => $this->getDatabase()->stock_log()->orderBy('row_created_timestamp', 'DESC'), @@ -319,7 +317,7 @@ class StockController extends BaseController ]); } - public function LocationContentSheet(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function LocationContentSheet(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'locationcontentsheet', [ 'products' => $this->getDatabase()->products()->orderBy('name'), @@ -329,7 +327,7 @@ class StockController extends BaseController ]); } - public function QuantityUnitConversionEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function QuantityUnitConversionEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $product = null; if (isset($request->getQueryParams()['product'])) @@ -366,7 +364,7 @@ class StockController extends BaseController } } - public function QuantityUnitPluralFormTesting(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function QuantityUnitPluralFormTesting(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'quantityunitpluraltesting', [ 'quantityUnits' => $this->getDatabase()->quantity_units()->orderBy('name') diff --git a/controllers/SystemApiController.php b/controllers/SystemApiController.php index 3ec023d5..a293fd80 100644 --- a/controllers/SystemApiController.php +++ b/controllers/SystemApiController.php @@ -4,20 +4,19 @@ namespace Grocy\Controllers; class SystemApiController extends BaseApiController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - public function GetDbChangedTime(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function GetDbChangedTime(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { - $response = $this->ApiResponse(array( + return $this->ApiResponse($response, array( 'changed_time' => $this->getDatabaseService()->GetDbChangedTime() )); - return $response; } - public function LogMissingLocalization(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function LogMissingLocalization(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if (GROCY_MODE === 'dev') { @@ -35,8 +34,8 @@ class SystemApiController extends BaseApiController } } - public function GetSystemInfo(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function GetSystemInfo(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { - return $this->ApiResponse($this->getApplicationService()->GetSystemInfo()); + return $this->ApiResponse($response, $this->getApplicationService()->GetSystemInfo()); } } diff --git a/controllers/SystemController.php b/controllers/SystemController.php index 57568d33..0b5a5a22 100644 --- a/controllers/SystemController.php +++ b/controllers/SystemController.php @@ -8,24 +8,24 @@ use \Grocy\Services\DemoDataGeneratorService; class SystemController extends BaseController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - public function Root(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Root(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { // Schema migration is done here $databaseMigrationService = DatabaseMigrationService::getInstance(); $databaseMigrationService->MigrateDatabase(); - if (GROCY_IS_DEMO_INSTALL) + if (GROCY_MODE === 'dev' || GROCY_MODE === 'demo' || GROCY_MODE === 'prerelease') { $demoDataGeneratorService = DemoDataGeneratorService::getInstance(); $demoDataGeneratorService->PopulateDemoData(); } - return $response->withRedirect($this->AppContainer->UrlManager->ConstructUrl($this->GetEntryPageRelative())); + return $response->withRedirect($this->AppContainer->get('UrlManager')->ConstructUrl($this->GetEntryPageRelative())); } /** @@ -91,7 +91,7 @@ class SystemController extends BaseController return '/about'; } - public function About(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function About(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'about', [ 'system_info' => $this->getApplicationService()->GetSystemInfo(), @@ -99,7 +99,7 @@ class SystemController extends BaseController ]); } - public function BarcodeScannerTesting(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function BarcodeScannerTesting(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'barcodescannertesting'); } diff --git a/controllers/TasksApiController.php b/controllers/TasksApiController.php index 2c2f0441..9310f87a 100644 --- a/controllers/TasksApiController.php +++ b/controllers/TasksApiController.php @@ -6,28 +6,17 @@ use \Grocy\Services\TasksService; class TasksApiController extends BaseApiController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $TasksService = null; - - protected function getTasksService() + public function Current(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { - if($this->TasksService == null) - { - $this->TasksService = TasksService::getInstance(); - } - return $this->TasksService; + return $this->ApiResponse($response, $this->getTasksService()->GetCurrent()); } - public function Current(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) - { - return $this->ApiResponse($this->getTasksService()->GetCurrent()); - } - - public function MarkTaskAsCompleted(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function MarkTaskAsCompleted(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); @@ -48,7 +37,7 @@ class TasksApiController extends BaseApiController } } - public function UndoTask(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UndoTask(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { diff --git a/controllers/TasksController.php b/controllers/TasksController.php index 03df840f..d75ca1da 100644 --- a/controllers/TasksController.php +++ b/controllers/TasksController.php @@ -6,23 +6,12 @@ use \Grocy\Services\TasksService; class TasksController extends BaseController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $TasksService = null; - - protected function getTasksService() - { - if($this->TasksService == null) - { - $this->TasksService = TasksService::getInstance(); - } - return $this->TasksService; - } - - public function Overview(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function Overview(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if (isset($request->getQueryParams()['include_done'])) { @@ -46,7 +35,7 @@ class TasksController extends BaseController ]); } - public function TaskEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function TaskEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['taskId'] == 'new') { @@ -69,7 +58,7 @@ class TasksController extends BaseController } } - public function TaskCategoriesList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function TaskCategoriesList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'taskcategories', [ 'taskCategories' => $this->getDatabase()->task_categories()->orderBy('name'), @@ -78,7 +67,7 @@ class TasksController extends BaseController ]); } - public function TaskCategoryEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function TaskCategoryEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['categoryId'] == 'new') { @@ -97,7 +86,7 @@ class TasksController extends BaseController } } - public function TasksSettings(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function TasksSettings(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'taskssettings'); } diff --git a/controllers/UsersApiController.php b/controllers/UsersApiController.php index 7ca55c3b..f1b50d86 100644 --- a/controllers/UsersApiController.php +++ b/controllers/UsersApiController.php @@ -6,27 +6,16 @@ use \Grocy\Services\UsersService; class UsersApiController extends BaseApiController { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { parent::__construct($container); } - protected $UsersService = null; - - protected function getUsersService() - { - if($this->UsersService == null) - { - $this->UsersService = UsersService::getInstance(); - } - return $this->UsersService; - } - - public function GetUsers(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function GetUsers(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { - return $this->ApiResponse($this->getUsersService()->GetUsersAsDto()); + return $this->ApiResponse($response, $this->getUsersService()->GetUsersAsDto()); } catch (\Exception $ex) { @@ -34,7 +23,7 @@ class UsersApiController extends BaseApiController } } - public function CreateUser(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function CreateUser(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); @@ -54,7 +43,7 @@ class UsersApiController extends BaseApiController } } - public function DeleteUser(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function DeleteUser(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { @@ -67,7 +56,7 @@ class UsersApiController extends BaseApiController } } - public function EditUser(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function EditUser(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { $requestBody = $request->getParsedBody(); @@ -82,12 +71,12 @@ class UsersApiController extends BaseApiController } } - public function GetUserSetting(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function GetUserSetting(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { $value = $this->getUsersService()->GetUserSetting(GROCY_USER_ID, $args['settingKey']); - return $this->ApiResponse(array('value' => $value)); + return $this->ApiResponse($response, array('value' => $value)); } catch (\Exception $ex) { @@ -95,7 +84,7 @@ class UsersApiController extends BaseApiController } } - public function SetUserSetting(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function SetUserSetting(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { try { diff --git a/controllers/UsersController.php b/controllers/UsersController.php index 28ba42e1..01894a66 100644 --- a/controllers/UsersController.php +++ b/controllers/UsersController.php @@ -4,14 +4,14 @@ namespace Grocy\Controllers; class UsersController extends BaseController { - public function UsersList(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UsersList(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { return $this->renderPage($response, 'users', [ 'users' => $this->getDatabase()->users()->orderBy('username') ]); } - public function UserEditForm(\Slim\Http\Request $request, \Slim\Http\Response $response, array $args) + public function UserEditForm(\Psr\Http\Message\ServerRequestInterface $request, \Psr\Http\Message\ResponseInterface $response, array $args) { if ($args['userId'] == 'new') { diff --git a/data_store/config.php b/data_store/config.php new file mode 100644 index 00000000..9df72f0b --- /dev/null +++ b/data_store/config.php @@ -0,0 +1,132 @@ + :2 +Total execution time in seconds: 9.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.8E-5 +PDO::quote called with arguments:- 2019-11-03 10:45:29 +Total execution time in seconds: 1.9E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 10:45:29' WHERE `id` = '1' +Total execution time in seconds: 8.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 2.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 7.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 5.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002761 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.007203 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002565 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.00756 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002291 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007861 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001863 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006303 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002227 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.006953 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002006 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006537 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001718 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005615 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.00182 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.006506 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001785 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005783 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 ++++Total execution time in seconds: 0.001834 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.006868 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000111 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 ++++Total execution time in seconds: 0.001912 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +---Total execution time in seconds: 0.006424 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.002244 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.7E-5 +---Total execution time in seconds: 0.009169 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::quote called with arguments:- normal +Total execution time in seconds: 1.5E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001664 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002633 ++++object created +PDO::exec called with arguments:- SELECT * FROM recipes_resolved +SELECT * FROM recipes_resolved +Total execution time in seconds: 0.014466 +PDO::query called with arguments:- SELECT * FROM recipes_resolved +SELECT * FROM recipes_resolved +Total execution time in seconds: 0.003817 +PDO::prepare called with arguments:- SELECT * FROM `recipes` WHERE `type` = 'normal' ORDER BY `name` ASC +Total execution time in seconds: 6.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `recipes` WHERE id IN (SELECT includes_recipe_id FROM recipes_nestings_resolved WHERE recipe_id = :1 AND includes_recipe_id != :1) ORDER BY `name` ASC +Total execution time in seconds: 0.000114 +PDO::prepare called with arguments:- SELECT * FROM `recipes_pos_resolved` WHERE recipe_id = :1 ORDER BY `ingredient_group` ASC +Total execution time in seconds: 0.000799 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 5.4E-5 +PDO::quote called with arguments:- recipes +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfields` WHERE `entity` = 'recipes' ORDER BY `name` ASC +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 8.5E-5 +PDO::quote called with arguments:- recipes +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfield_values_resolved` WHERE `entity` = 'recipes' ORDER BY `name` ASC +Total execution time in seconds: 0.000113 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000103 +PDO::prepare called with arguments:- SELECT * FROM `quantity_unit_conversions_resolved` +Total execution time in seconds: 0.000182 +PDO::prepare called with arguments:- SELECT * FROM `recipes_pos_resolved` +Total execution time in seconds: 0.000905 +PDO::prepare called with arguments:- SELECT COUNT(*) FROM `recipes_pos_resolved` WHERE `recipe_id` = '1' ORDER BY `ingredient_group` ASC +Total execution time in seconds: 0.000798 +PDO::prepare called with arguments:- SELECT * FROM `userentities` WHERE show_in_sidebar_menu = 1 ORDER BY `name` ASC +Total execution time in seconds: 7.5E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002355 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.009638 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.008678 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.014341 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.003245 ++++object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.008387 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.005252 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.009856 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.004039 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +Total execution time in seconds: 0.01095 +---Total execution time in seconds: 0.010303 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 ++++Total execution time in seconds: 0.002088 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007126 +---object created ++++Total execution time in seconds: 0.002403 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.008554 +---object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.003141 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.008749 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001871 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.2E-5 +Total execution time in seconds: 5.7E-5 +---Total execution time in seconds: 0.006616 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002473 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.009451 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.001955 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.00754 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.002746 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.008337 +---object created ++++Total execution time in seconds: 0.002933 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.009094 +---object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +Total execution time in seconds: 5.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.002428 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.007959 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.002845 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.010304 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 ++++Total execution time in seconds: 0.002704 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007537 ++++Total execution time in seconds: 0.003251 ++++object created +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.010007 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.1E-5 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.002732 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.00849 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.4E-5 ++++Total execution time in seconds: 0.002537 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.6E-5 +---Total execution time in seconds: 0.009287 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002209 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006409 +---object created ++++Total execution time in seconds: 0.002561 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.008227 +---object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +Total execution time in seconds: 0.000108 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.0E-6 ++++Total execution time in seconds: 0.002003 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007078 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001945 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007371 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.002979 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.010585 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000144 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 ++++Total execution time in seconds: 0.018487 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +---Total execution time in seconds: 0.03882 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002256 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.00798 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Total execution time in seconds: 0.001691 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.010408 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.001902 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.008292 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002134 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.00785 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.002545 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.029371 +---object created ++++Total execution time in seconds: 0.025799 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Creating new PDO object +---Total execution time in seconds: 0.032662 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.003287 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.2E-5 +---Total execution time in seconds: 0.008488 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.002973 ++++object created ++++Total execution time in seconds: 0.002971 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.009315 +---object created +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.010199 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Creating new PDO object ++++Total execution time in seconds: 0.002302 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.003069 ++++object created +---Total execution time in seconds: 0.008173 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.009006 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002006 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---creating new LessQL::Database object +---Total execution time in seconds: 0.007134 +---object created ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Creating new PDO object ++++Total execution time in seconds: 0.002641 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.002734 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.010196 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.009699 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002172 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.6E-5 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.008223 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002604 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007976 +---object created +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.002957 ++++object created +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.003662 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.008677 +---object created +---Total execution time in seconds: 0.008831 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002784 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.008682 +---object created +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000126 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002066 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.007094 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001613 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005616 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.00215 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.00655 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.00181 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006263 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002341 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.008265 +---object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Creating new PDO object ++++Total execution time in seconds: 0.007689 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.002535 ++++object created +Total execution time in seconds: 4.4E-5 +---Total execution time in seconds: 0.014927 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.008033 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002056 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.006458 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 ++++Total execution time in seconds: 0.002643 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.8E-5 +---Total execution time in seconds: 0.008991 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +Total execution time in seconds: 0.012115 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.006987 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.013421 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.00309 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.008208 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002292 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.0066 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 ++++Total execution time in seconds: 0.001528 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000106 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 +---Total execution time in seconds: 0.00588 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001519 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005214 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001701 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006412 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000141 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002412 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.007453 +---object created ++++Total execution time in seconds: 0.002924 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.00824 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.004126 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.008398 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001675 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.005349 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000112 +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 ++++Total execution time in seconds: 0.002356 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006625 +---object created ++++Total execution time in seconds: 0.002635 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007105 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.001162 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.2E-5 +Total execution time in seconds: 5.0E-5 +---Total execution time in seconds: 0.004533 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001416 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.004817 +---object created +Total execution time in seconds: 9.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.001614 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005154 +---object created ++++Total execution time in seconds: 0.002149 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006013 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.00144 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.004983 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001529 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.004699 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001334 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.004725 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001587 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005891 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.001472 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.005525 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001526 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006067 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001635 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005297 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000126 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001929 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005742 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001511 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.004925 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001558 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005079 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.002077 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005437 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001821 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005354 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001548 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005279 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001687 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005837 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001935 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005475 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001591 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.007184 +---object created ++++Creating new PDO object +---creating new LessQL::Database object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.002163 ++++object created ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +Total execution time in seconds: 1.4E-5 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.009332 +---object created ++++Total execution time in seconds: 0.003324 ++++object created ++++Total execution time in seconds: 0.003191 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object +---Total execution time in seconds: 0.009406 +---object created +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.017979 +---object created +Total execution time in seconds: 1.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.009575 ++++object created +---creating new LessQL::Database object +Total execution time in seconds: 6.9E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Creating new PDO object +---Total execution time in seconds: 0.013573 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002435 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.007536 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.002432 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006279 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001417 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005255 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002477 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Creating new PDO object +---Total execution time in seconds: 0.008668 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 ++++Total execution time in seconds: 0.002614 ++++object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00012 +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.008151 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002176 ++++object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.007098 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.002593 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---creating new LessQL::Database object +---Total execution time in seconds: 0.006823 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002066 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.00758 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 5.4E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001728 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.005128 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002493 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.008124 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.002459 ++++object created +---creating new LessQL::Database object +Total execution time in seconds: 0.000121 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.008295 +PDO::setAttribute called with arguments:- 3, 2 +---object created +Total execution time in seconds: 5.0E-5 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.003784 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object ++++Creating new PDO object +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.011751 +---object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +Total execution time in seconds: 3.5E-5 ++++Total execution time in seconds: 0.003429 ++++object created ++++Total execution time in seconds: 0.006121 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.012532 +---Total execution time in seconds: 0.015044 +---object created +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.002484 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 1.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.007958 +---object created ++++Total execution time in seconds: 0.002827 ++++object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.008163 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.00252 ++++object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object +Total execution time in seconds: 0.000154 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.009146 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.003224 ++++object created +---creating new LessQL::Database object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object ++++Creating new PDO object +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.009513 +---object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.00237 ++++object created ++++Total execution time in seconds: 0.00308 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +---Total execution time in seconds: 0.00663 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.008453 +---object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Total execution time in seconds: 0.00214 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++object created ++++Creating new PDO object +Total execution time in seconds: 6.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.001644 ++++object created +Total execution time in seconds: 1.8E-5 +---creating new LessQL::Database object +---Total execution time in seconds: 0.008349 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006082 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 ++++Total execution time in seconds: 0.002212 ++++object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.3E-5 +---Total execution time in seconds: 0.005814 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002316 ++++object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +Total execution time in seconds: 0.000153 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.0E-6 +---Total execution time in seconds: 0.006676 +---object created ++++Total execution time in seconds: 0.002438 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.007615 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Total execution time in seconds: 0.001374 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.004897 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Creating new PDO object ++++Total execution time in seconds: 0.002067 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object ++++Total execution time in seconds: 0.002112 ++++object created +Total execution time in seconds: 1.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.007242 +---object created +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.002288 ++++object created +---Total execution time in seconds: 0.006833 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.0E-6 +---Total execution time in seconds: 0.006598 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Creating new PDO object ++++Total execution time in seconds: 0.001629 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.3E-5 +Total execution time in seconds: 0.000103 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.002188 ++++object created +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006952 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007215 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000102 +Total execution time in seconds: 5.9E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +Total execution time in seconds: 5.5E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.002382 ++++object created ++++Total execution time in seconds: 0.003551 ++++object created +Total execution time in seconds: 2.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.00016 ++++Total execution time in seconds: 0.006511 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.8E-5 +---Total execution time in seconds: 0.010507 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.012953 +---object created +---object created +Total execution time in seconds: 2.9E-5 +---Total execution time in seconds: 0.015009 +---object created +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.002688 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.004469 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.009781 +---object created ++++Total execution time in seconds: 0.005406 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +---Total execution time in seconds: 0.012527 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.6E-5 +---Total execution time in seconds: 0.012636 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +Total execution time in seconds: 7.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Creating new PDO object ++++Creating new PDO object ++++Total execution time in seconds: 0.002423 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.003529 ++++object created +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.003918 ++++object created +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.011546 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.9E-5 +---Total execution time in seconds: 0.011242 +---object created +---creating new LessQL::Database object +---Total execution time in seconds: 0.012616 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002427 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.003532 ++++object created +---Total execution time in seconds: 0.007936 +---object created ++++Total execution time in seconds: 0.00321 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.010822 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.015344 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 ++++Total execution time in seconds: 0.003126 ++++object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 3.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.009693 +---object created ++++Creating new PDO object ++++Total execution time in seconds: 0.002579 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.002871 ++++object created +---Total execution time in seconds: 0.008964 +---object created +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.01014 +---object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.002782 ++++object created ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.0E-6 ++++Total execution time in seconds: 0.001885 ++++object created +Total execution time in seconds: 8.0E-6 ++++Total execution time in seconds: 0.002686 ++++object created +---Total execution time in seconds: 0.011114 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007232 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.01351 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002277 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.0E-6 ++++Total execution time in seconds: 0.002857 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 ++++Total execution time in seconds: 0.002783 ++++object created +---Total execution time in seconds: 0.008345 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.0094 +---object created +---creating new LessQL::Database object +---Total execution time in seconds: 0.011437 +---object created ++++Creating new PDO object +---creating new LessQL::Database object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.00172 ++++object created ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.006208 +---object created ++++Total execution time in seconds: 0.00232 ++++object created ++++Total execution time in seconds: 0.002422 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.008939 +---object created +---Total execution time in seconds: 0.009285 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +Total execution time in seconds: 8.3E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.002079 ++++object created +Total execution time in seconds: 5.9E-5 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.003425 +PDO::setAttribute called with arguments:- 3, 2 ++++object created +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.007579 +---object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---creating new LessQL::Database object +---Total execution time in seconds: 0.009529 +---object created ++++Creating new PDO object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.002071 +Total execution time in seconds: 1.2E-5 ++++Creating new PDO object ++++object created ++++Total execution time in seconds: 0.002793 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 ++++Total execution time in seconds: 0.002067 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006657 +---object created +---Total execution time in seconds: 0.009402 +---object created +---Total execution time in seconds: 0.010377 +---object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 ++++Creating new PDO object +Total execution time in seconds: 5.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 ++++Total execution time in seconds: 0.003453 ++++object created +---creating new LessQL::Database object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Creating new PDO object ++++Creating new PDO object +---Total execution time in seconds: 0.010037 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002322 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.007397 +---object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.00875 ++++object created +Total execution time in seconds: 5.9E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.002596 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.015595 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---creating new LessQL::Database object +---Total execution time in seconds: 0.007501 +---object created +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001867 ++++object created ++++Total execution time in seconds: 0.003234 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.006831 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.0E-6 +---Total execution time in seconds: 0.014135 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +Total execution time in seconds: 3.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 ++++Total execution time in seconds: 0.003227 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.011915 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002318 ++++object created ++++Total execution time in seconds: 0.002563 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.010247 +---object created +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.011573 +---object created +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.8E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 ++++Total execution time in seconds: 0.002757 ++++object created ++++Total execution time in seconds: 0.002743 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 +Total execution time in seconds: 4.0E-5 +---Total execution time in seconds: 0.008268 +---object created +---Total execution time in seconds: 0.010702 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000181 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.00223 ++++object created +Total execution time in seconds: 2.5E-5 ++++Total execution time in seconds: 0.003532 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.008226 +---object created +---Total execution time in seconds: 0.008507 +---object created +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002655 ++++object created ++++Total execution time in seconds: 0.003793 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.007001 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.009713 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.002182 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002904 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.007533 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.009054 +---object created +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 ++++Total execution time in seconds: 0.001856 ++++object created ++++Total execution time in seconds: 0.002216 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.007444 +---object created +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.007591 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.002413 ++++object created +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.003125 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.007281 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.008964 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Creating new PDO object ++++Total execution time in seconds: 0.001894 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.002072 ++++object created +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.00746 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.00748 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.00195 ++++object created +Total execution time in seconds: 7.0E-6 ++++Total execution time in seconds: 0.002539 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006982 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.0E-5 +---Total execution time in seconds: 0.007605 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002203 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006439 +---object created ++++Total execution time in seconds: 0.002334 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007802 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 7.0E-6 ++++Total execution time in seconds: 0.002156 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006345 +---object created ++++Total execution time in seconds: 0.002434 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 ++++Creating new PDO object +---Total execution time in seconds: 0.008398 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.00281 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.00715 +---object created ++++Total execution time in seconds: 0.002497 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006839 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001439 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005568 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.001074 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.003644 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00014 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001365 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.004956 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001789 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005078 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.3E-5 ++++Total execution time in seconds: 0.001718 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005307 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001303 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.004913 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001704 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005186 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001552 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.00542 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001358 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.004788 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001338 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.005014 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000115 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001366 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.004954 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001608 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.004528 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000129 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001894 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.006829 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 ++++Total execution time in seconds: 0.001367 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.00466 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.00126 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 +---Total execution time in seconds: 0.004584 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001413 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.004565 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001553 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.005157 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.001889 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005208 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.00248 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006394 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001653 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.004926 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000199 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002602 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006702 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001579 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.005431 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001385 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.005212 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001389 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005208 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002391 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.009404 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.0E-5 ++++Total execution time in seconds: 0.002421 ++++object created ++++Total execution time in seconds: 0.009257 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.019418 +---object created +Total execution time in seconds: 7.0E-6 +---Total execution time in seconds: 0.00954 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.9E-5 ++++Total execution time in seconds: 0.002388 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 ++++object created ++++Total execution time in seconds: 0.002608 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.007491 +---object created +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.027447 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.003042 +Total execution time in seconds: 1.5E-5 ++++object created ++++Total execution time in seconds: 0.002809 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 1.7E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Creating new PDO object +---Total execution time in seconds: 0.007363 +---object created +---Total execution time in seconds: 0.009508 +---object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.6E-5 +Total execution time in seconds: 0.000106 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.010096 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.01477 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.002676 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Creating new PDO object +---creating new LessQL::Database object +---Total execution time in seconds: 0.00671 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001823 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.005788 +---object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.008911 ++++object created ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.013553 +---object created +Total execution time in seconds: 5.9E-5 ++++Total execution time in seconds: 0.003395 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.007901 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002656 ++++object created ++++Total execution time in seconds: 0.002743 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.008986 +---object created +---Total execution time in seconds: 0.009132 +---object created ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 2.7E-5 ++++Creating new PDO object ++++Total execution time in seconds: 0.003576 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.003438 ++++object created +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.013034 +---object created ++++Total execution time in seconds: 0.004546 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 1.8E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Creating new PDO object +---Total execution time in seconds: 0.013025 +---object created +---Total execution time in seconds: 0.012896 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.008987 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000144 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +Total execution time in seconds: 4.6E-5 +---Total execution time in seconds: 0.015213 +---object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 ++++Creating new PDO object +---creating new LessQL::Database object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 ++++Creating new PDO object ++++Total execution time in seconds: 0.002783 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.003025 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.012319 +---object created ++++Total execution time in seconds: 0.005204 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.01247 +---object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---creating new LessQL::Database object +---Total execution time in seconds: 0.015047 +---object created ++++Creating new PDO object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002982 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.005362 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.0E-5 ++++Total execution time in seconds: 0.003978 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.012934 +---object created +Total execution time in seconds: 1.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.014325 +---object created +Total execution time in seconds: 4.1E-5 +---Total execution time in seconds: 0.013213 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +Total execution time in seconds: 4.9E-5 +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.002248 ++++object created +Total execution time in seconds: 1.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.004316 ++++object created ++++Total execution time in seconds: 0.003211 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.010244 +---Total execution time in seconds: 0.010537 +---object created +PDO::setAttribute called with arguments:- 3, 2 +---object created +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.011026 +---object created +---creating new LessQL::Database object +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002947 ++++object created +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.00351 ++++object created +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.004819 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.009618 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.015101 +---object created +---Total execution time in seconds: 0.016452 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +Total execution time in seconds: 5.3E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 ++++Creating new PDO object ++++Total execution time in seconds: 0.002314 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.003625 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.007765 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 ++++Total execution time in seconds: 0.004613 ++++object created +---Total execution time in seconds: 0.009425 +---object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 2.2E-5 ++++Creating new PDO object +---Total execution time in seconds: 0.01151 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.00215 ++++object created +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.00274 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.007338 +---object created +Total execution time in seconds: 3.4E-5 +---Total execution time in seconds: 0.007956 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.007858 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.8E-5 +Total execution time in seconds: 6.0E-5 +---Total execution time in seconds: 0.013787 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000161 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 ++++Total execution time in seconds: 0.010777 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 +---Total execution time in seconds: 0.020119 +---object created ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.6E-5 ++++Total execution time in seconds: 0.008064 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.017162 +---object created +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.004414 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.012444 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Total execution time in seconds: 0.002161 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.3E-5 +---Total execution time in seconds: 0.009082 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.000132 ++++Total execution time in seconds: 0.002685 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.009808 +---object created +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.002534 ++++object created ++++Total execution time in seconds: 0.003934 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +---Total execution time in seconds: 0.008828 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.0E-5 +---Total execution time in seconds: 0.020663 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000201 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 0.000126 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.003273 ++++object created +PDO::quote called with arguments:- 1 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.0E-5 +Total execution time in seconds: 3.2E-5 +---Total execution time in seconds: 0.009447 +---object created +PDO::quote called with arguments:- 2019-11-03 10:45:33 +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 10:45:33' WHERE `id` = '1' +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.001968 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006184 +---object created +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +Total execution time in seconds: 2.7E-5 ++++Total execution time in seconds: 0.012349 ++++object created ++++Total execution time in seconds: 0.014685 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.01935 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 +---Total execution time in seconds: 0.022679 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.5E-5 ++++Total execution time in seconds: 0.003461 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.009523 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.7E-5 +PDO::quote called with arguments:- 1 +---creating new LessQL::Database object +Total execution time in seconds: 2.2E-5 ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 8.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002945 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.009296 +---object created ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.1E-5 ++++Total execution time in seconds: 0.003259 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +Total execution time in seconds: 3.3E-5 ++++Total execution time in seconds: 0.005659 ++++object created +---Total execution time in seconds: 0.014459 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.7E-5 +---Total execution time in seconds: 0.015899 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002431 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.009966 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.0001 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +Total execution time in seconds: 8.0E-5 ++++Total execution time in seconds: 0.012572 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.019668 +---object created +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.3E-5 +Total execution time in seconds: 3.5E-5 ++++Total execution time in seconds: 0.005352 ++++object created ++++Total execution time in seconds: 0.005197 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.01217 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 +---Total execution time in seconds: 0.012592 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000209 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002378 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 +---Total execution time in seconds: 0.007758 +---object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.8E-5 ++++Total execution time in seconds: 0.004464 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Creating new PDO object +---Total execution time in seconds: 0.012441 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.3E-5 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.004072 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.011305 +---object created ++++Total execution time in seconds: 0.004784 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.012867 +PDO::setAttribute called with arguments:- 3, 2 +---object created +Total execution time in seconds: 2.6E-5 ++++Total execution time in seconds: 0.002904 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.027823 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.001446 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 8.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.5E-5 ++++Total execution time in seconds: 0.004522 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 +---Total execution time in seconds: 0.016762 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.002821 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.6E-5 +---Total execution time in seconds: 0.013965 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001956 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.7E-5 +---Total execution time in seconds: 0.008188 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002361 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.007472 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.4E-5 ++++Total execution time in seconds: 0.002375 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.6E-5 +---Total execution time in seconds: 0.006762 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001665 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005253 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001668 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005052 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001291 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.004033 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.001713 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.005669 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001406 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.004756 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001579 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.00443 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001362 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.004944 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000107 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.5E-5 ++++Total execution time in seconds: 0.001865 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006265 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001422 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.004904 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.002088 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006895 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002098 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005846 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001605 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.004658 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001272 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.004302 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001781 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005664 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001426 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.00443 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001513 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.004595 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001676 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.00498 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001407 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.00475 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001824 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.004972 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Total execution time in seconds: 0.001401 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.004623 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 ++++Total execution time in seconds: 0.001432 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.005153 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 ++++Total execution time in seconds: 0.001733 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005268 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.003044 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.008185 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001648 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.00471 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.9E-5 ++++Total execution time in seconds: 0.001543 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.005146 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 10:46:33 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 10:46:33' WHERE `id` = '1' +Total execution time in seconds: 3.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001435 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.004795 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001421 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.004478 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.001532 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.004799 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001495 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.005598 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001651 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005059 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001409 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +---Total execution time in seconds: 0.004811 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001343 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.004449 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.00166 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.005284 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 ++++Total execution time in seconds: 0.001646 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.005258 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 ++++Total execution time in seconds: 0.001531 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005383 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.002542 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.00977 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.003028 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.009773 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002268 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +---Total execution time in seconds: 0.007869 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.003314 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.009744 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001811 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005922 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002038 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.007397 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00011 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002334 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.00732 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.000111 ++++Total execution time in seconds: 0.002352 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.7E-5 +---Total execution time in seconds: 0.008124 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001883 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005998 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.001626 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.006764 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002108 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.8E-5 +---Total execution time in seconds: 0.007347 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001914 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006097 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002381 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006707 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.001538 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.005398 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.00235 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006504 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001657 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.005749 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 9.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 2.7E-5 +PDO::quote called with arguments:- 2019-11-03 10:47:33 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 10:47:33' WHERE `id` = '1' +Total execution time in seconds: 5.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.6E-5 ++++Total execution time in seconds: 0.002398 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.012806 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.00015 ++++Total execution time in seconds: 0.00295 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.01108 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000152 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 7.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 6.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002879 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.00879 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002623 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007254 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001755 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.006439 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001669 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.006482 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001898 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007035 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.00277 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.008454 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 0.0001 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002132 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.00746 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.000106 ++++Total execution time in seconds: 0.002872 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.008784 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Total execution time in seconds: 0.006444 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.00999 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.009751 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00013 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 9.0E-6 +PDO::quote called with arguments:- 2019-11-03 10:55:47 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 10:55:47' WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::quote called with arguments:- normal +Total execution time in seconds: 2.0E-5 +PDO::exec called with arguments:- SELECT * FROM recipes_resolved +SELECT * FROM recipes_resolved +Total execution time in seconds: 0.013494 +PDO::query called with arguments:- SELECT * FROM recipes_resolved +SELECT * FROM recipes_resolved +Total execution time in seconds: 0.003772 +PDO::prepare called with arguments:- SELECT * FROM `recipes` WHERE `type` = 'normal' ORDER BY `name` ASC +Total execution time in seconds: 5.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `recipes` WHERE id IN (SELECT includes_recipe_id FROM recipes_nestings_resolved WHERE recipe_id = :1 AND includes_recipe_id != :1) ORDER BY `name` ASC +Total execution time in seconds: 9.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `recipes_pos_resolved` WHERE recipe_id = :1 ORDER BY `ingredient_group` ASC +Total execution time in seconds: 0.00077 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- recipes +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfields` WHERE `entity` = 'recipes' ORDER BY `name` ASC +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 6.3E-5 +PDO::quote called with arguments:- recipes +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfield_values_resolved` WHERE `entity` = 'recipes' ORDER BY `name` ASC +Total execution time in seconds: 9.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_unit_conversions_resolved` +Total execution time in seconds: 0.000184 +PDO::prepare called with arguments:- SELECT * FROM `recipes_pos_resolved` +Total execution time in seconds: 0.000855 +PDO::prepare called with arguments:- SELECT COUNT(*) FROM `recipes_pos_resolved` WHERE `recipe_id` = '1' ORDER BY `ingredient_group` ASC +Total execution time in seconds: 0.000806 +PDO::prepare called with arguments:- SELECT * FROM `userentities` WHERE show_in_sidebar_menu = 1 ORDER BY `name` ASC +Total execution time in seconds: 7.0E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.9E-5 ++++Total execution time in seconds: 0.004267 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.012013 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.0134 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.020736 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +Total execution time in seconds: 0.013035 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000259 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000111 +Total execution time in seconds: 0.000303 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.002841 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.009995 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001561 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.005457 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000137 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00013 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +Total execution time in seconds: 0.000181 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.002455 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.008743 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002954 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.008647 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000162 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +Total execution time in seconds: 3.5E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.0E-5 ++++Total execution time in seconds: 0.003374 ++++object created ++++Total execution time in seconds: 0.003169 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.011346 +---object created +Total execution time in seconds: 3.8E-5 +---Total execution time in seconds: 0.012799 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000175 +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +Total execution time in seconds: 3.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.7E-5 ++++Total execution time in seconds: 0.002858 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +---Total execution time in seconds: 0.010871 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.004803 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.011978 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.7E-5 ++++Total execution time in seconds: 0.008738 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.018014 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002199 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.013068 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000214 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 7.9E-5 +---creating new LessQL::Database object +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 ++++Creating new PDO object +PDO::quote called with arguments:- 2019-11-03 10:55:48 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.6E-5 +Total execution time in seconds: 2.8E-5 ++++Total execution time in seconds: 0.003819 ++++object created +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 10:55:48' WHERE `id` = '1' +Total execution time in seconds: 4.8E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.012435 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.005595 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +---Total execution time in seconds: 0.012761 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000116 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.7E-5 +Total execution time in seconds: 0.022638 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 0.000188 +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +Total execution time in seconds: 0.000133 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00018 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000174 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 0.000167 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.003669 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.013974 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000137 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002293 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.009579 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.001952 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.007665 +---object created +Total execution time in seconds: 0.000437 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002453 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.009189 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002646 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.009301 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 6.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 9.0E-6 +PDO::quote called with arguments:- 2019-11-03 10:56:13 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 10:56:13' WHERE `id` = '1' +Total execution time in seconds: 5.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 7.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 7.4E-5 +PDO::exec called with arguments:- SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +Total execution time in seconds: 0.003982 +PDO::query called with arguments:- SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +Total execution time in seconds: 0.002989 +PDO::exec called with arguments:- SELECT * FROM stock_current_locations +SELECT * FROM stock_current_locations +Total execution time in seconds: 0.000951 +PDO::query called with arguments:- SELECT * FROM stock_current_locations +SELECT * FROM stock_current_locations +Total execution time in seconds: 0.001197 +PDO::exec called with arguments:- SELECT * FROM stock_missing_products_including_opened +SELECT * FROM stock_missing_products_including_opened +Total execution time in seconds: 0.002108 +PDO::query called with arguments:- SELECT * FROM stock_missing_products_including_opened +SELECT * FROM stock_missing_products_including_opened +Total execution time in seconds: 0.002094 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 4.7E-5 +PDO::quote called with arguments:- products +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfields` WHERE `entity` = 'products' ORDER BY `name` ASC +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- products +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfield_values_resolved` WHERE `entity` = 'products' ORDER BY `name` ASC +Total execution time in seconds: 0.000119 +PDO::prepare called with arguments:- SELECT * FROM `locations` ORDER BY `name` ASC +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `product_groups` ORDER BY `name` ASC +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` WHERE show_in_sidebar_menu = 1 ORDER BY `name` ASC +Total execution time in seconds: 7.2E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object +Total execution time in seconds: 4.5E-5 ++++Total execution time in seconds: 0.006971 +PDO::setAttribute called with arguments:- 3, 2 ++++object created +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.005025 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.022818 +---object created +---Total execution time in seconds: 0.021147 +---object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000118 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Total execution time in seconds: 0.002696 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.009993 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000176 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000122 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000189 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00023 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.002076 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.1E-5 +---Total execution time in seconds: 0.008167 +---object created ++++Total execution time in seconds: 0.001936 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007401 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 5.2E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +Total execution time in seconds: 9.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.00217 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.008406 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000136 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 ++++Total execution time in seconds: 0.001779 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006453 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.4E-5 +Total execution time in seconds: 0.00016 ++++Total execution time in seconds: 0.002088 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.007558 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001673 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.006476 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.002324 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.1E-5 ++++Total execution time in seconds: 0.003686 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.009343 +---object created +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.010708 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000172 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000131 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 4.4E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001592 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.007338 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000101 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000178 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.7E-5 ++++Total execution time in seconds: 0.002115 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.007058 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001657 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.4E-5 +---Total execution time in seconds: 0.007719 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001836 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.007098 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002588 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.2E-5 +---Total execution time in seconds: 0.010594 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002591 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.007645 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000154 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000134 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002024 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.2E-5 +Total execution time in seconds: 1.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.009365 +---object created +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000237 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.0E-5 ++++Total execution time in seconds: 0.003499 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.010413 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002393 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.9E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.008537 +---object created +Total execution time in seconds: 0.000131 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 6.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 10:56:14 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 10:56:14' WHERE `id` = '1' +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000195 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 ++++Total execution time in seconds: 0.002735 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.011147 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.005588 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.010264 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.008418 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 5.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::quote called with arguments:- 2019-11-03 11:05:15 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:05:15' WHERE `id` = '1' +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.7E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.5E-5 ++++Total execution time in seconds: 0.008999 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.018012 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.012339 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000144 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 0.000164 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 2.1E-5 +PDO::quote called with arguments:- 2019-11-03 11:06:15 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:06:15' WHERE `id` = '1' +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 0.000105 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 0.000107 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 ++++Total execution time in seconds: 0.001187 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.004985 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.1E-5 +PDO::quote called with arguments:- 2019-11-03 11:07:16 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:07:16' WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001382 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.00691 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.0E-5 +PDO::quote called with arguments:- 2019-11-03 11:08:16 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:08:16' WHERE `id` = '1' +Total execution time in seconds: 2.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 8.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 0.000289 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.001975 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006454 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000119 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::quote called with arguments:- 2019-11-03 11:09:15 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:09:15' WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.8E-5 ++++Total execution time in seconds: 0.002161 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +---Total execution time in seconds: 0.006385 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:10:16 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:10:16' WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001177 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006376 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::quote called with arguments:- 2019-11-03 11:11:15 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:11:15' WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.002701 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.010999 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00015 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.1E-5 +PDO::quote called with arguments:- 2019-11-03 11:12:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:12:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 6.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001722 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006524 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.1E-5 +PDO::quote called with arguments:- 2019-11-03 11:13:15 +Total execution time in seconds: 1.0E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:13:15' WHERE `id` = '1' +Total execution time in seconds: 2.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.002339 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007826 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:14:15 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:14:15' WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001407 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006194 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::quote called with arguments:- 2019-11-03 11:15:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:15:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001785 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +---Total execution time in seconds: 0.006306 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:16:15 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:16:15' WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001369 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005603 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:17:16 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:17:16' WHERE `id` = '1' +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001629 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.007809 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::quote called with arguments:- 2019-11-03 11:18:16 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:18:16' WHERE `id` = '1' +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000112 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001717 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006319 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:19:15 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:19:15' WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 2.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 6.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001966 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.007176 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000104 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000126 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:20:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:20:15' WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 9.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001242 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.004716 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:21:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:21:15' WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002426 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.009752 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:22:16 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:22:16' WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000104 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002242 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.007065 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 2.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.8E-5 +PDO::quote called with arguments:- 2019-11-03 11:23:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:23:15' WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001996 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.009363 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::quote called with arguments:- 2019-11-03 11:24:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:24:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.002657 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 +---Total execution time in seconds: 0.009679 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000203 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 7.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:25:15 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:25:15' WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 8.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000112 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.001844 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.007914 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:26:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:26:15' WHERE `id` = '1' +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001926 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006754 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.5E-5 +PDO::quote called with arguments:- 2019-11-03 11:27:15 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:27:15' WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001844 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007277 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:28:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:28:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001856 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.00675 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 6.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::quote called with arguments:- 2019-11-03 11:29:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:29:15' WHERE `id` = '1' +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002195 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007125 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:30:15 +Total execution time in seconds: 1.7E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:30:15' WHERE `id` = '1' +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.003018 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.009597 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:31:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:31:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 ++++Total execution time in seconds: 0.002497 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007841 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:32:15 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:32:15' WHERE `id` = '1' +Total execution time in seconds: 2.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001726 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006022 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.5E-5 +PDO::quote called with arguments:- 2019-11-03 11:33:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:33:15' WHERE `id` = '1' +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002329 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.007789 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:34:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:34:15' WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001682 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005744 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:35:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:35:15' WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 ++++Total execution time in seconds: 0.001308 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005371 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:36:16 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:36:16' WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.8E-5 ++++Total execution time in seconds: 0.002485 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.007769 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:37:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:37:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001519 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +---Total execution time in seconds: 0.005882 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:38:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:38:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001423 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005225 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.6E-5 +PDO::quote called with arguments:- 2019-11-03 11:39:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:39:15' WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001569 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.00642 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000481 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 0.00014 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:40:14 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:40:14' WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.002066 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.016245 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.001808 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 0.000767 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.5E-5 +PDO::quote called with arguments:- 2019-11-03 11:41:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:41:15' WHERE `id` = '1' +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001372 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005396 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::quote called with arguments:- 2019-11-03 11:42:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:42:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001815 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.0E-6 +---Total execution time in seconds: 0.006765 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:43:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:43:15' WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001872 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.007104 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 5.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:44:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:44:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000193 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001077 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.00445 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:45:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:45:15' WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001757 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006312 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::quote called with arguments:- 2019-11-03 11:46:15 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:46:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 2.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 6.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.00109 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.006212 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:47:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:47:15' WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000103 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.00132 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007149 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::quote called with arguments:- 2019-11-03 11:48:15 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:48:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001587 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.007676 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.0E-5 +PDO::quote called with arguments:- 2019-11-03 11:49:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:49:15' WHERE `id` = '1' +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001124 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.004518 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 5.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::quote called with arguments:- 2019-11-03 11:50:15 +Total execution time in seconds: 1.0E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:50:15' WHERE `id` = '1' +Total execution time in seconds: 2.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000127 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.001817 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.006942 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:51:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:51:15' WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001726 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005684 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 6.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:52:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:52:15' WHERE `id` = '1' +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001897 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.007128 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::quote called with arguments:- 2019-11-03 11:53:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:53:15' WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001945 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007903 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:54:15 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:54:15' WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 6.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001654 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006076 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:55:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:55:15' WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.003655 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.010343 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::quote called with arguments:- 2019-11-03 11:56:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:56:15' WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000468 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001385 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.005634 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 11:57:15 +Total execution time in seconds: 1.0E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:57:15' WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.00153 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005556 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 11:58:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:58:15' WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.1E-5 ++++Total execution time in seconds: 0.003885 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.1E-5 +---Total execution time in seconds: 0.012891 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 6.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.7E-5 +PDO::quote called with arguments:- 2019-11-03 11:59:15 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 11:59:15' WHERE `id` = '1' +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.00137 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.005028 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:00:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:00:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001875 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006645 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:01:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:01:15' WHERE `id` = '1' +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001496 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005574 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:02:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:02:15' WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001693 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.006954 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 5.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 12:03:15 +Total execution time in seconds: 1.6E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:03:15' WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.00151 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005772 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 12:04:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:04:15' WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.001399 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005602 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::quote called with arguments:- 2019-11-03 12:05:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:05:15' WHERE `id` = '1' +Total execution time in seconds: 2.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.002802 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.009555 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:06:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:06:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 7.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.00134 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005721 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:07:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:07:15' WHERE `id` = '1' +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.001817 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.006577 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::quote called with arguments:- 2019-11-03 12:08:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:08:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001947 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007248 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 9.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::quote called with arguments:- 2019-11-03 12:09:15 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:09:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001877 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006445 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::quote called with arguments:- 2019-11-03 12:10:14 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:10:14' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 2.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.00189 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.007135 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:11:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:11:15' WHERE `id` = '1' +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002384 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.007913 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.1E-5 +PDO::quote called with arguments:- 2019-11-03 12:12:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:12:15' WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.00212 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007325 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.0E-5 +PDO::quote called with arguments:- 2019-11-03 12:13:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:13:15' WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.8E-5 ++++Total execution time in seconds: 0.002338 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.010405 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.5E-5 +PDO::quote called with arguments:- 2019-11-03 12:14:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:14:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 6.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001615 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006012 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.0E-5 +PDO::quote called with arguments:- 2019-11-03 12:15:15 +Total execution time in seconds: 1.0E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:15:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001839 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.006144 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::quote called with arguments:- 2019-11-03 12:16:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:16:15' WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001976 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 +---Total execution time in seconds: 0.007575 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.5E-5 +PDO::quote called with arguments:- 2019-11-03 12:17:15 +Total execution time in seconds: 1.8E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:17:15' WHERE `id` = '1' +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 2.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 6.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001372 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.008321 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:18:15 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:18:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001761 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.006633 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:19:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:19:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.002691 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.009323 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:20:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:20:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001677 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006309 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::quote called with arguments:- 2019-11-03 12:21:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:21:15' WHERE `id` = '1' +Total execution time in seconds: 2.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.00223 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.008037 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000395 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::quote called with arguments:- 2019-11-03 12:22:15 +Total execution time in seconds: 6.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:22:15' WHERE `id` = '1' +Total execution time in seconds: 2.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002592 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007532 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::quote called with arguments:- 2019-11-03 12:23:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:23:15' WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.1E-5 ++++Total execution time in seconds: 0.001855 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.00669 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 5.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.8E-5 +PDO::quote called with arguments:- 2019-11-03 12:24:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:24:15' WHERE `id` = '1' +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.00176 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.007317 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 6.0E-6 +PDO::quote called with arguments:- 2019-11-03 12:25:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:25:15' WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000101 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002022 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006427 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::quote called with arguments:- 2019-11-03 12:26:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:26:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.8E-5 ++++Total execution time in seconds: 0.002458 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.007921 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 5.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::quote called with arguments:- 2019-11-03 12:27:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:27:15' WHERE `id` = '1' +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001297 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.00451 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:28:15 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:28:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000149 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001725 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006407 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 9.0E-6 +PDO::quote called with arguments:- 2019-11-03 12:29:14 +Total execution time in seconds: 2.0E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:29:14' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.003417 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.7E-5 +---Total execution time in seconds: 0.01124 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000113 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000112 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::quote called with arguments:- 2019-11-03 12:30:14 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:30:14' WHERE `id` = '1' +Total execution time in seconds: 2.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 2.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001617 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006194 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 12:31:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:31:15' WHERE `id` = '1' +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001179 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.005043 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 12:32:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:32:15' WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001515 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005549 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.0E-5 +PDO::quote called with arguments:- 2019-11-03 12:33:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:33:15' WHERE `id` = '1' +Total execution time in seconds: 2.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001524 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005432 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.0E-5 +PDO::quote called with arguments:- 2019-11-03 12:34:15 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:34:15' WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001493 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005722 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:35:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:35:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.00145 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007519 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.1E-5 +PDO::quote called with arguments:- 2019-11-03 12:36:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:36:15' WHERE `id` = '1' +Total execution time in seconds: 2.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000117 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001767 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.006842 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::quote called with arguments:- 2019-11-03 12:37:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:37:15' WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 ++++Total execution time in seconds: 0.001979 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006138 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:38:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:38:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001544 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.008372 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:39:15 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:39:15' WHERE `id` = '1' +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001632 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005781 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::quote called with arguments:- 2019-11-03 12:40:15 +Total execution time in seconds: 1.0E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:40:15' WHERE `id` = '1' +Total execution time in seconds: 2.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001327 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.004837 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 5.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::quote called with arguments:- 2019-11-03 12:41:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:41:15' WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001721 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006344 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::quote called with arguments:- 2019-11-03 12:42:15 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:42:15' WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001842 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.0067 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 5.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:43:15 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:43:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001836 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006754 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-03 12:44:15 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:44:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001804 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006639 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 5.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 9.0E-6 +PDO::quote called with arguments:- 2019-11-03 12:45:15 +Total execution time in seconds: 1.0E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:45:15' WHERE `id` = '1' +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Total execution time in seconds: 0.001421 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005755 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 6.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::quote called with arguments:- 2019-11-03 12:46:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:46:15' WHERE `id` = '1' +Total execution time in seconds: 2.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 2.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.001958 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.011987 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.8E-5 +PDO::quote called with arguments:- 2019-11-03 12:47:15 +Total execution time in seconds: 3.0E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:47:15' WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 2.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 2.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000106 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.00325 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +---Total execution time in seconds: 0.01023 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000106 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 3.7E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.8E-5 +PDO::quote called with arguments:- 2019-11-03 12:48:15 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 12:48:15' WHERE `id` = '1' +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 2.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 4.6E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +!!!Starting up loading app +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.009526 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.01435 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.012368 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 6.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.6E-5 +PDO::quote called with arguments:- 2019-11-03 13:50:15 +Total execution time in seconds: 1.6E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 13:50:15' WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 2.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +!!!Starting up loading app +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.9E-5 ++++Total execution time in seconds: 0.004597 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.008619 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.007136 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000112 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 6.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.8E-5 +PDO::quote called with arguments:- 2019-11-03 13:51:15 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 13:51:15' WHERE `id` = '1' +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 2.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +!!!Starting up loading app +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.003048 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.011744 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000102 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000154 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000392 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000316 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 0.000243 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 5.8E-5 +PDO::quote called with arguments:- 2019-11-03 13:52:15 +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-03 13:52:15' WHERE `id` = '1' +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.9E-5 ++++Total execution time in seconds: 0.047341 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.225623 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.075051 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 0.000651 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- 2019-11-05 16:28:38 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-05 16:28:38' WHERE `id` = '1' +Total execution time in seconds: 0.00117 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 6.9E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.5E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.008007 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 +---Total execution time in seconds: 0.022602 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.009498 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 5.0E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.5E-5 +PDO::quote called with arguments:- 2019-11-05 16:28:42 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-05 16:28:42' WHERE `id` = '1' +Total execution time in seconds: 4.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 6.3E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 6.4E-5 +PDO::exec called with arguments:- SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +Total execution time in seconds: 0.009823 +PDO::query called with arguments:- SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +Total execution time in seconds: 0.003632 +PDO::exec called with arguments:- SELECT * FROM stock_current_locations +SELECT * FROM stock_current_locations +Total execution time in seconds: 0.000711 +PDO::query called with arguments:- SELECT * FROM stock_current_locations +SELECT * FROM stock_current_locations +Total execution time in seconds: 0.000591 +PDO::exec called with arguments:- SELECT * FROM stock_missing_products_including_opened +SELECT * FROM stock_missing_products_including_opened +Total execution time in seconds: 0.001775 +PDO::query called with arguments:- SELECT * FROM stock_missing_products_including_opened +SELECT * FROM stock_missing_products_including_opened +Total execution time in seconds: 0.00212 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 3.7E-5 +PDO::quote called with arguments:- products +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfields` WHERE `entity` = 'products' ORDER BY `name` ASC +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 7.0E-5 +PDO::quote called with arguments:- products +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfield_values_resolved` WHERE `entity` = 'products' ORDER BY `name` ASC +Total execution time in seconds: 0.000275 +PDO::prepare called with arguments:- SELECT * FROM `locations` ORDER BY `name` ASC +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `product_groups` ORDER BY `name` ASC +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` WHERE show_in_sidebar_menu = 1 ORDER BY `name` ASC +Total execution time in seconds: 7.1E-5 +!!!Starting up loading app +!!!Array +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.003415 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 +---Total execution time in seconds: 0.015343 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.013082 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000106 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.025256 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000214 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000103 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +!!!Starting up loading app +!!!Array +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 ++++Total execution time in seconds: 0.002122 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.0E-5 +Total execution time in seconds: 4.0E-5 +---Total execution time in seconds: 0.009729 +---object created ++++Total execution time in seconds: 0.004959 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.012811 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000135 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +Total execution time in seconds: 4.0E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.001936 ++++object created +!!!Starting up loading app +!!!Array +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.008675 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002122 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.7E-5 +---Total execution time in seconds: 0.007769 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000127 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000161 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000111 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.0E-5 +Total execution time in seconds: 5.1E-5 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.5E-5 ++++Total execution time in seconds: 0.0017 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006143 +---object created ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.5E-5 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.00365 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.017774 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00016 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.9E-5 ++++Total execution time in seconds: 0.001986 ++++object created +!!!Starting up loading app +!!!Array +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.1E-5 +---Total execution time in seconds: 0.009083 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001613 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.007345 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +Total execution time in seconds: 3.4E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001448 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.00644 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.001721 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.006378 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 ++++Total execution time in seconds: 0.005781 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.011489 +---object created +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +Total execution time in seconds: 0.009806 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.4E-5 ++++Total execution time in seconds: 0.001908 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.8E-5 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.008403 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 5.9E-5 +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001443 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.8E-5 +---Total execution time in seconds: 0.006102 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000171 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 3.7E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.00194 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007229 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001718 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +Total execution time in seconds: 5.7E-5 +---Total execution time in seconds: 0.008072 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 0.000105 +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001788 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006761 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.002407 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 +---Total execution time in seconds: 0.009484 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000101 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +Total execution time in seconds: 9.9E-5 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +!!!Array +Total execution time in seconds: 0.000136 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.8E-5 ++++Total execution time in seconds: 0.001829 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Creating new PDO object +---Total execution time in seconds: 0.009287 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002237 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.008533 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00011 +Total execution time in seconds: 9.7E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000132 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.001242 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.00489 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000153 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 4.3E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Total execution time in seconds: 0.002131 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.00716 +---object created +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000114 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.1E-5 ++++Total execution time in seconds: 0.002218 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.006892 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.001884 ++++object created +Total execution time in seconds: 5.7E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.006637 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000122 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 5.4E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002275 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.007016 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +!!!Starting up loading app +!!!Array +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.002389 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.5E-5 +Total execution time in seconds: 2.4E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.003683 ++++object created +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.008301 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.009967 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000115 +Total execution time in seconds: 0.000124 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00015 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000134 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000215 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +Total execution time in seconds: 4.2E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001717 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006985 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000102 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 5.7E-5 ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.00171 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.002525 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007297 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.6E-5 +---Total execution time in seconds: 0.008061 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +Total execution time in seconds: 4.7E-5 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 2.9E-5 +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +Total execution time in seconds: 4.7E-5 +Total execution time in seconds: 9.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002435 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.007733 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.7E-5 +!!!Starting up loading app ++++Total execution time in seconds: 0.003166 ++++object created +!!!Array +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.009228 +---object created +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +Total execution time in seconds: 0.000101 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Creating new PDO object ++++Total execution time in seconds: 0.002041 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.7E-5 ++++Total execution time in seconds: 0.002612 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.010674 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.018482 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000105 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000126 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000138 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +Total execution time in seconds: 0.00074 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000223 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000189 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +!!!Starting up loading app +!!!Array +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.00741 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 +---Total execution time in seconds: 0.017982 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +!!!Starting up loading app +!!!Array +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.004766 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.1E-5 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.014481 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 ++++Total execution time in seconds: 0.003232 ++++object created +Total execution time in seconds: 0.022806 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 +---Total execution time in seconds: 0.019637 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.6E-5 +Total execution time in seconds: 6.0E-5 +Total execution time in seconds: 0.000155 ++++Total execution time in seconds: 0.003876 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.1E-5 +Total execution time in seconds: 5.7E-5 +---Total execution time in seconds: 0.022927 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000101 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000139 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000209 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.004065 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.012605 +---object created +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000112 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Total execution time in seconds: 0.001832 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.00867 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000117 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.7E-5 ++++Total execution time in seconds: 0.003566 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000153 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.011886 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000502 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000101 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000122 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +Total execution time in seconds: 0.000277 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +Total execution time in seconds: 0.000159 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.007081 ++++object created +Total execution time in seconds: 0.000157 +!!!Starting up loading app +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.7E-5 +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000177 +---Total execution time in seconds: 0.037387 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002714 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.013445 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000113 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 ++++Creating new PDO object +Total execution time in seconds: 0.000101 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000161 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002931 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +Total execution time in seconds: 4.9E-5 +Total execution time in seconds: 4.6E-5 +---Total execution time in seconds: 0.021429 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000124 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000143 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +Total execution time in seconds: 3.4E-5 ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.008583 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.5E-5 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.017064 +---object created +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000113 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.0001 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.7E-5 ++++Total execution time in seconds: 0.002729 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.008514 +---object created +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000239 +Total execution time in seconds: 4.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +Total execution time in seconds: 0.000119 ++++Total execution time in seconds: 0.004585 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.7E-5 +---Total execution time in seconds: 0.011739 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002484 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.007816 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002365 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.1E-5 +---Total execution time in seconds: 0.00762 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001574 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005771 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001916 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007513 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002068 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.007643 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001966 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.006581 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001749 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005928 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.9E-5 ++++Total execution time in seconds: 0.003258 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.010571 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002033 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.007734 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.9E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001435 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005233 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001464 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.00544 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002212 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.008191 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001996 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006647 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001419 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.005571 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001411 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005336 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001925 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006677 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.001998 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.006347 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001305 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.005443 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000134 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001663 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.005615 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001697 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.00669 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001534 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.005768 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001497 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005473 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001411 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.005186 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000111 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.00681 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.016419 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000621 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.011099 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.016629 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.016288 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 5.8E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.3E-5 +PDO::quote called with arguments:- 2019-11-05 16:49:17 +Total execution time in seconds: 8.0E-6 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-05 16:49:17' WHERE `id` = '1' +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 5.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.6E-5 +!!!constructing StockController +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.6E-5 +PDO::exec called with arguments:- SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +Total execution time in seconds: 0.005328 +PDO::query called with arguments:- SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +Total execution time in seconds: 0.006676 +PDO::exec called with arguments:- SELECT * FROM stock_current_locations +SELECT * FROM stock_current_locations +Total execution time in seconds: 0.00174 +PDO::query called with arguments:- SELECT * FROM stock_current_locations +SELECT * FROM stock_current_locations +Total execution time in seconds: 0.00281 +PDO::exec called with arguments:- SELECT * FROM stock_missing_products_including_opened +SELECT * FROM stock_missing_products_including_opened +Total execution time in seconds: 0.003746 +PDO::query called with arguments:- SELECT * FROM stock_missing_products_including_opened +SELECT * FROM stock_missing_products_including_opened +Total execution time in seconds: 0.003412 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 0.000128 +PDO::quote called with arguments:- products +Total execution time in seconds: 1.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfields` WHERE `entity` = 'products' ORDER BY `name` ASC +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 6.6E-5 +PDO::quote called with arguments:- products +Total execution time in seconds: 1.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfield_values_resolved` WHERE `entity` = 'products' ORDER BY `name` ASC +Total execution time in seconds: 0.000123 +PDO::prepare called with arguments:- SELECT * FROM `locations` ORDER BY `name` ASC +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `product_groups` ORDER BY `name` ASC +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` WHERE show_in_sidebar_menu = 1 ORDER BY `name` ASC +Total execution time in seconds: 7.4E-5 +!!!Starting up loading app +!!!Array +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.002773 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.011764 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.008576 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.015391 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +Total execution time in seconds: 0.00974 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000123 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 9.9E-5 +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002798 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.010104 +---object created +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.00318 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.011472 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.004604 ++++object created +!!!Starting up loading app +!!!Array +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.7E-5 +---Total execution time in seconds: 0.035594 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.008123 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.021285 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002292 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.2E-5 +---Total execution time in seconds: 0.011346 +---object created +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.001932 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.007085 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.3E-5 +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +!!!Starting up loading app +!!!Array +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Creating new PDO object ++++Total execution time in seconds: 0.002171 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.010126 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.013525 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.020258 +---object created +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.0001 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.002453 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +---Total execution time in seconds: 0.010259 +---object created +Total execution time in seconds: 0.010779 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000136 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000168 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.00192 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000156 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.8E-5 +---Total execution time in seconds: 0.010076 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +!!!Starting up loading app +!!!Array +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.003089 ++++object created +Total execution time in seconds: 6.0E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.009483 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.003326 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.009657 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000155 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000166 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000198 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00015 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.5E-5 +Total execution time in seconds: 6.0E-5 ++++Total execution time in seconds: 0.002964 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.012734 +---object created +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002501 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.009191 +---object created ++++Total execution time in seconds: 0.00336 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.0E-5 +Total execution time in seconds: 2.4E-5 +---Total execution time in seconds: 0.011799 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000142 +Total execution time in seconds: 6.9E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002926 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.012291 +---object created +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.002663 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000103 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.1E-5 +---Total execution time in seconds: 0.010045 +---object created +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000122 +Total execution time in seconds: 3.3E-5 +Total execution time in seconds: 0.000299 ++++Total execution time in seconds: 0.004158 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.011307 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000566 +Total execution time in seconds: 5.1E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000367 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002805 ++++object created +!!!Starting up loading app +PDO::setAttribute called with arguments:- 3, 2 +!!!Array +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.012377 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.6E-5 ++++Total execution time in seconds: 0.007187 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000194 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.018811 +---object created +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.003433 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.011455 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000243 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +---creating new LessQL::Database object +Total execution time in seconds: 8.2E-5 ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.0E-5 ++++Total execution time in seconds: 0.002963 ++++object created ++++Total execution time in seconds: 0.002388 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.010783 +Total execution time in seconds: 1.1E-5 +---object created +---Total execution time in seconds: 0.013566 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.003406 ++++object created +Total execution time in seconds: 9.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.010074 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 2.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +!!!Starting up loading app +!!!Array +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.7E-5 +Total execution time in seconds: 2.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.004465 ++++object created ++++Total execution time in seconds: 0.00329 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.013258 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.013244 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000112 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.001911 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.017176 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000104 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 0.000114 +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Total execution time in seconds: 0.002225 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +!!!Starting up loading app +---Total execution time in seconds: 0.009153 +---object created +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000152 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 2.1E-5 +Total execution time in seconds: 6.8E-5 ++++Total execution time in seconds: 0.002635 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.009738 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000146 +!!!Array +Total execution time in seconds: 9.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.001789 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.007044 +---object created +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000121 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +Total execution time in seconds: 4.4E-5 +Total execution time in seconds: 4.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.005801 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.017022 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +Total execution time in seconds: 0.01797 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 0.000125 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +!!!Array ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002044 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.2E-5 +---Total execution time in seconds: 0.010147 +---object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +Total execution time in seconds: 8.9E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002051 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +---Total execution time in seconds: 0.008706 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000107 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.00168 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.7E-5 +---Total execution time in seconds: 0.007113 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000199 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000316 +Total execution time in seconds: 5.6E-5 +Total execution time in seconds: 0.000112 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.1E-5 ++++Total execution time in seconds: 0.003287 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.010358 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000207 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 0.000134 +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002878 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.7E-5 +---Total execution time in seconds: 0.013594 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000157 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 ++++Creating new PDO object ++++Total execution time in seconds: 0.007746 +PDO::setAttribute called with arguments:- 3, 2 ++++object created +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.00335 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.019293 +---object created +---Total execution time in seconds: 0.017119 +---object created +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000267 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.002626 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.7E-5 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.008593 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +Total execution time in seconds: 6.1E-5 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001758 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.007862 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.003394 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.014435 +---object created +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +---creating new LessQL::Database object +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object ++++Total execution time in seconds: 0.001825 ++++object created +Total execution time in seconds: 0.000121 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.002526 ++++object created +Total execution time in seconds: 4.9E-5 +---Total execution time in seconds: 0.019322 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.009551 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000216 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.002387 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.009628 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000178 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000114 +Total execution time in seconds: 6.3E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.6E-5 ++++Total execution time in seconds: 0.004312 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.016749 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +!!!Starting up loading app +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002461 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.010293 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +!!!Array +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 5.2E-5 +!!!Array ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002393 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.7E-5 +---Total execution time in seconds: 0.010602 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +Total execution time in seconds: 6.5E-5 ++++Total execution time in seconds: 0.002014 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.007336 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000159 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 0.000131 +!!!Array +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +Total execution time in seconds: 0.000115 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.002839 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.019163 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.5E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001626 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.2E-5 +---Total execution time in seconds: 0.006139 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001949 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.006785 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002062 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007494 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001988 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006029 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000115 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001762 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.006449 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.00192 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006901 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00015 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.002174 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.007506 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000101 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001591 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.006206 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002121 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007189 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002037 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.007774 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000104 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002345 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.00889 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002037 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.007716 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000143 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002479 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.010862 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000324 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002139 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.007759 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.3E-5 ++++Total execution time in seconds: 0.00267 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.009225 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000112 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.2E-5 ++++Total execution time in seconds: 0.003727 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.9E-5 +---Total execution time in seconds: 0.011022 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000107 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.9E-5 ++++Total execution time in seconds: 0.001673 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.006502 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000151 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.001769 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.006767 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +!!!Starting up loading app +!!!Array +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.006258 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.017392 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.6E-5 ++++Total execution time in seconds: 0.008499 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.01339 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.011178 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000115 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 8.4E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 4.4E-5 +PDO::quote called with arguments:- 2019-11-05 17:49:34 +Total execution time in seconds: 2.9E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-05 17:49:34' WHERE `id` = '1' +Total execution time in seconds: 5.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 6.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 3.8E-5 +!!!constructing StockController +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000104 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.4E-5 +PDO::exec called with arguments:- SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +Total execution time in seconds: 0.003882 +PDO::query called with arguments:- SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +Total execution time in seconds: 0.003011 +PDO::exec called with arguments:- SELECT * FROM stock_current_locations +SELECT * FROM stock_current_locations +Total execution time in seconds: 0.000637 +PDO::query called with arguments:- SELECT * FROM stock_current_locations +SELECT * FROM stock_current_locations +Total execution time in seconds: 0.00071 +PDO::exec called with arguments:- SELECT * FROM stock_missing_products_including_opened +SELECT * FROM stock_missing_products_including_opened +Total execution time in seconds: 0.002455 +PDO::query called with arguments:- SELECT * FROM stock_missing_products_including_opened +SELECT * FROM stock_missing_products_including_opened +Total execution time in seconds: 0.002006 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 5.0E-5 +PDO::quote called with arguments:- products +Total execution time in seconds: 2.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfields` WHERE `entity` = 'products' ORDER BY `name` ASC +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 3.4E-5 +PDO::quote called with arguments:- products +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfield_values_resolved` WHERE `entity` = 'products' ORDER BY `name` ASC +Total execution time in seconds: 8.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `locations` ORDER BY `name` ASC +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `product_groups` ORDER BY `name` ASC +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` WHERE show_in_sidebar_menu = 1 ORDER BY `name` ASC +Total execution time in seconds: 0.000103 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.4E-5 ++++Total execution time in seconds: 0.005792 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.015914 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.005789 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.01268 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +Total execution time in seconds: 0.008909 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000105 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000129 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.007424 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.015086 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.006621 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +Total execution time in seconds: 0.000222 +---Total execution time in seconds: 0.021379 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002575 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.007841 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.001812 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.014977 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000147 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000143 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000278 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000114 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.2E-5 ++++Total execution time in seconds: 0.016521 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.004438 ++++object created +---Total execution time in seconds: 0.031792 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.014133 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +Total execution time in seconds: 0.034516 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000133 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002477 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.010489 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.00234 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.008511 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000148 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +!!!Starting up loading app +---creating new LessQL::Database object +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.002771 ++++object created +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.005045 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---creating new LessQL::Database object +---Total execution time in seconds: 0.015085 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Creating new PDO object +---Total execution time in seconds: 0.016596 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.00716 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.015964 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000101 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000105 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.000154 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.003295 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.6E-5 +---Total execution time in seconds: 0.010265 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.003376 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.00971 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 ++++Total execution time in seconds: 0.003762 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.009679 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000113 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.003418 ++++object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.016979 +---object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 ++++Total execution time in seconds: 0.007781 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.7E-5 +---Total execution time in seconds: 0.016548 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 0.000175 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.7E-5 ++++Total execution time in seconds: 0.002392 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.000207 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.009631 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000119 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 0.000136 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.007346 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.1E-5 +Total execution time in seconds: 6.3E-5 +---Total execution time in seconds: 0.027387 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000578 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.2E-5 ++++Creating new PDO object ++++Total execution time in seconds: 0.004827 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.029726 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000115 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 ++++Total execution time in seconds: 0.067916 ++++object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +---Total execution time in seconds: 0.093111 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 0.000121 ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.000109 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000103 ++++Total execution time in seconds: 0.065348 ++++object created +Total execution time in seconds: 0.000106 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.085512 +---object created +Total execution time in seconds: 0.088229 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000182 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000117 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.005471 ++++object created +Total execution time in seconds: 6.7E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.014799 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000137 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000187 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.003242 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.7E-5 +---Total execution time in seconds: 0.011475 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000106 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000282 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +!!!Starting up loading app +---creating new LessQL::Database object +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000105 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.019291 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 2.0E-5 +Total execution time in seconds: 0.000172 ++++Creating new PDO object +---Total execution time in seconds: 0.044136 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.1E-5 ++++Total execution time in seconds: 0.015766 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.031241 +---object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000193 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +Total execution time in seconds: 0.000889 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.004972 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.8E-5 +---Total execution time in seconds: 0.029172 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000117 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000133 +Total execution time in seconds: 0.000235 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000297 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.00305 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.01448 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.002545 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +Total execution time in seconds: 8.6E-5 +---Total execution time in seconds: 0.015979 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.8E-5 ++++Total execution time in seconds: 0.004117 ++++object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.014106 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.003206 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.011473 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000141 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.00211 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.000251 +Total execution time in seconds: 1.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +---Total execution time in seconds: 0.011315 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00014 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000106 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.7E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000119 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.8E-5 ++++Total execution time in seconds: 0.002767 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.0105 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000203 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 0.000136 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.003103 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Creating new PDO object +---Total execution time in seconds: 0.010814 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.003892 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.2E-5 +---Total execution time in seconds: 0.011665 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000112 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000154 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000169 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +Total execution time in seconds: 0.00016 ++++Total execution time in seconds: 0.003088 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.012193 +---object created +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000104 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +Total execution time in seconds: 0.000153 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000152 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +Total execution time in seconds: 0.000101 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000113 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.003974 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.012175 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +---creating new LessQL::Database object +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.6E-5 +Total execution time in seconds: 8.2E-5 ++++Total execution time in seconds: 0.003399 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +---Total execution time in seconds: 0.015626 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.004161 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.01419 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00019 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + ++++Total execution time in seconds: 0.008809 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000257 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---creating new LessQL::Database object +---Total execution time in seconds: 0.027868 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 ++++Total execution time in seconds: 0.002558 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +Total execution time in seconds: 6.8E-5 +---Total execution time in seconds: 0.017397 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000106 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.001309 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000143 +Total execution time in seconds: 0.000171 +Total execution time in seconds: 0.001288 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_fi---creating new LessQL::Database object +lesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000108 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.006909 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.013907 +---object created +Total execution time in seconds: 6.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00015 ++++Total execution time in seconds: 0.006457 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +---Total execution time in seconds: 0.019406 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000192 +Total execution time in seconds: 0.000461 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000193 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 ++++Total execution time in seconds: 0.00718 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 0.000138 +Total execution time in seconds: 8.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---Total execution time in seconds: 0.020478 +---object created +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002417 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.008915 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +Total execution time in seconds: 0.000172 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000546 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.003161 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.011352 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000132 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 0.000292 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000117 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002045 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.013887 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002874 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.016969 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.011631 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.019836 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000861 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000411 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.005964 ++++object created +Total execution time in seconds: 0.000134 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.030031 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000135 +Total execution time in seconds: 9.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000103 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000113 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000284 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000121 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.00026 ++++Total execution time in seconds: 0.010319 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-5 +---Total execution time in seconds: 0.018113 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.010967 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000105 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001457 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +---Total execution time in seconds: 0.005626 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000117 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.3E-5 ++++Total execution time in seconds: 0.001626 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.006419 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000102 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.002253 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.007844 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.003082 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.010118 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000153 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001967 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.006395 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.5E-5 ++++Total execution time in seconds: 0.00341 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.009318 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.003347 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.584306 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000129 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000162 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.003565 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.00998 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.001545 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.005539 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000103 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002143 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.00779 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.002553 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.008694 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.9E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002181 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.007912 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.0001 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.002859 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.6E-5 +---Total execution time in seconds: 0.00903 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.0001 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002324 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.0E-5 +---Total execution time in seconds: 0.013887 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000106 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.00255 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.008524 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.001946 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.009235 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.0001 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002273 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.008922 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000156 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001878 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.006046 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000146 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001779 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.006751 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000101 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.003032 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.4E-5 +---Total execution time in seconds: 0.013325 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000134 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00014 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 ++++Total execution time in seconds: 0.012243 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.7E-5 +---Total execution time in seconds: 0.020512 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.044957 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000108 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000148 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 9.2E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.9E-5 +PDO::quote called with arguments:- 2019-11-05 17:54:49 +Total execution time in seconds: 2.6E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-05 17:54:49' WHERE `id` = '1' +Total execution time in seconds: 5.1E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 2.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 0.000104 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 6.6E-5 +!!!constructing StockController +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 3.9E-5 +PDO::exec called with arguments:- SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +Total execution time in seconds: 0.008112 +PDO::query called with arguments:- SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +Total execution time in seconds: 0.003245 +PDO::exec called with arguments:- SELECT * FROM stock_current_locations +SELECT * FROM stock_current_locations +Total execution time in seconds: 0.000905 +PDO::query called with arguments:- SELECT * FROM stock_current_locations +SELECT * FROM stock_current_locations +Total execution time in seconds: 0.001328 +PDO::exec called with arguments:- SELECT * FROM stock_missing_products_including_opened +SELECT * FROM stock_missing_products_including_opened +Total execution time in seconds: 0.001765 +PDO::query called with arguments:- SELECT * FROM stock_missing_products_including_opened +SELECT * FROM stock_missing_products_including_opened +Total execution time in seconds: 0.001907 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 4.2E-5 +PDO::quote called with arguments:- products +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfields` WHERE `entity` = 'products' ORDER BY `name` ASC +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 4.8E-5 +PDO::quote called with arguments:- products +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfield_values_resolved` WHERE `entity` = 'products' ORDER BY `name` ASC +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `locations` ORDER BY `name` ASC +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `product_groups` ORDER BY `name` ASC +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` WHERE show_in_sidebar_menu = 1 ORDER BY `name` ASC +Total execution time in seconds: 9.3E-5 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.003434 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.011364 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.010463 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.022319 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +Total execution time in seconds: 0.009288 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 6.0E-5 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.0E-5 ++++Total execution time in seconds: 0.002971 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.012575 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.002734 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.009709 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000186 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.004237 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.014947 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002472 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.010196 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.003561 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.010995 +---object created ++++Total execution time in seconds: 0.004826 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.012621 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000106 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.8E-5 ++++Total execution time in seconds: 0.0054 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.4E-5 ++++Creating new PDO object +---Total execution time in seconds: 0.016065 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.00352 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.012399 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00012 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000134 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000129 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.006139 ++++object created +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.005406 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.01554 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.016834 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000101 +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000111 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +Total execution time in seconds: 4.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.4E-5 ++++Total execution time in seconds: 0.004631 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.012066 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.001989 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.5E-5 +---Total execution time in seconds: 0.00754 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000103 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.0001 ++++Total execution time in seconds: 0.014886 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.023633 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000105 +Total execution time in seconds: 0.018135 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 5.1E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.004655 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.013248 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.004142 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.012512 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000163 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 ++++Total execution time in seconds: 0.003793 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.011154 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.2E-5 ++++Total execution time in seconds: 0.002281 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +Total execution time in seconds: 2.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.003228 ++++object created +---Total execution time in seconds: 0.011544 +---object created +Total execution time in seconds: 8.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.012868 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000143 +Total execution time in seconds: 4.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 ++++Total execution time in seconds: 0.002773 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.3E-5 +Total execution time in seconds: 6.1E-5 +---Total execution time in seconds: 0.009735 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000197 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000207 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00015 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002845 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.2E-5 +---Total execution time in seconds: 0.012563 +---object created ++++Total execution time in seconds: 0.004425 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.023521 +---object created +Total execution time in seconds: 0.000103 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +Total execution time in seconds: 0.000436 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000305 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.004168 ++++object created +Total execution time in seconds: 0.000729 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.02136 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000128 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000189 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.5E-5 +Total execution time in seconds: 9.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 6.9E-5 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.8E-5 ++++Total execution time in seconds: 0.006901 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.023891 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.4E-5 ++++Total execution time in seconds: 0.006433 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000335 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.019715 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00028 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000113 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000971 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.4E-5 ++++Total execution time in seconds: 0.005254 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.016649 +---object created +Total execution time in seconds: 0.0001 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000153 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00017 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 2.9E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 ++++Creating new PDO object +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.8E-5 ++++Total execution time in seconds: 0.033564 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000147 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---creating new LessQL::Database object +---Total execution time in seconds: 0.051717 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.6E-5 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.00205 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Creating new PDO object +---Total execution time in seconds: 0.009244 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 ++++Total execution time in seconds: 0.003535 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +---Total execution time in seconds: 0.011446 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +Total execution time in seconds: 0.008236 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000111 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00011 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +Total execution time in seconds: 5.6E-5 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.002036 ++++object created +Total execution time in seconds: 0.000226 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.5E-5 +---Total execution time in seconds: 0.013131 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.9E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +!!!Starting up loading app ++++Total execution time in seconds: 0.002178 ++++object created +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.010189 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.004049 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.014085 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000149 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.003712 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000405 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.01399 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000386 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000153 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002347 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.012478 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000164 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000104 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + ++++Total execution time in seconds: 0.004601 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.018027 +---object created +Total execution time in seconds: 0.000694 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.00253 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.009305 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 0.000352 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000332 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000115 +Total execution time in seconds: 0.000375 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000134 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.003509 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.009875 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +Total execution time in seconds: 0.000116 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000219 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +---creating new LessQL::Database object +Total execution time in seconds: 0.00077 ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.00308 ++++object created +Total execution time in seconds: 2.9E-5 ++++Total execution time in seconds: 0.004081 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.7E-5 +Total execution time in seconds: 0.000352 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.011782 +---object created +---Total execution time in seconds: 0.012732 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00029 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000108 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.001838 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.009586 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000146 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +Total execution time in seconds: 0.000137 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.4E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +!!!Starting up loading app ++++Creating new PDO object +---creating new LessQL::Database object +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.005447 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.007718 ++++object created +Total execution time in seconds: 0.002009 +---Total execution time in seconds: 0.019791 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---creating new LessQL::Database object +---Total execution time in seconds: 0.018933 +---object created ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.00312 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.010912 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +Total execution time in seconds: 8.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +Total execution time in seconds: 3.8E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000118 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.003069 ++++object created +Total execution time in seconds: 4.8E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.000448 +---Total execution time in seconds: 0.018729 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000223 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00162 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000288 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002888 ++++object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +---Total execution time in seconds: 0.017749 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000201 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002491 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.009703 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000268 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.003219 +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.003248 ++++object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.0159 +---object created ++++Total execution time in seconds: 0.009994 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.8E-5 +---Total execution time in seconds: 0.021373 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000218 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000377 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +Total execution time in seconds: 0.000103 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_fi!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +lesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.9E-5 ++++Total execution time in seconds: 0.013822 ++++object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.048565 +---object created ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.0E-5 +Total execution time in seconds: 0.00032 ++++Total execution time in seconds: 0.005152 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000152 +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000268 +Total execution time in seconds: 7.0E-5 +Total execution time in seconds: 0.000157 +---Total execution time in seconds: 0.039609 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +Total execution time in seconds: 9.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000188 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000101 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000104 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000158 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000152 +!!!Starting up loading app +Total execution time in seconds: 0.000339 ++++Total execution time in seconds: 0.032794 ++++object created +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000112 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +---Total execution time in seconds: 0.062199 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000626 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.0E-5 +Total execution time in seconds: 0.000299 ++++Total execution time in seconds: 0.004888 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000119 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.026097 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000237 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000205 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000274 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000271 +Total execution time in seconds: 0.000103 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000421 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.4E-5 ++++Total execution time in seconds: 0.01027 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +---Total execution time in seconds: 0.019892 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000168 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 ++++Total execution time in seconds: 0.002643 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.9E-5 +---Total execution time in seconds: 0.015316 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000121 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 ++++Total execution time in seconds: 0.002692 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.013199 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.003352 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.009349 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000215 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.6E-5 ++++Total execution time in seconds: 0.009895 ++++object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00011 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.033992 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000194 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002166 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.009216 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000213 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000101 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.1E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.001324 ++++Total execution time in seconds: 0.007516 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.015123 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000221 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.000573 ++++Total execution time in seconds: 0.003284 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.010813 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +Total execution time in seconds: 0.003203 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 8.2E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.7E-5 ++++Total execution time in seconds: 0.002517 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.1E-5 +---Total execution time in seconds: 0.010364 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000215 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000243 +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000406 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 7.4E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002522 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.012741 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000175 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000138 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 2.8E-5 +Total execution time in seconds: 0.000107 ++++Total execution time in seconds: 0.002801 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.00939 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000111 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.001647 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000758 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000167 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 ++++Total execution time in seconds: 0.00315 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.00015 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.011527 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000253 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.7E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.002263 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 +---Total execution time in seconds: 0.008044 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000107 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000112 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +---creating new LessQL::Database object +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002661 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000115 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +---Total execution time in seconds: 0.022146 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.002549 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.012303 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 0.000136 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.2E-5 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.003239 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.009492 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.4E-5 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +Total execution time in seconds: 6.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00052 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.001753 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.010134 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000107 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.4E-5 ++++Total execution time in seconds: 0.002432 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.000102 +---Total execution time in seconds: 0.020405 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 0.000169 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.001604 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +Total execution time in seconds: 0.000175 +!!!Starting up loading app +PDO::setAttribute called with arguments:- 3, 2 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + Total execution time in seconds: 1.5E-5 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_fi+++Total execution time in seconds: 0.010116 ++++object created +lesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +Total execution time in seconds: 0.000151 +---Total execution time in seconds: 0.019779 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.003354 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.011321 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000105 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000187 ++++Creating new PDO object +Total execution time in seconds: 0.051274 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.021988 ++++object created +Total execution time in seconds: 0.000254 +Total execution time in seconds: 9.9E-5 +Total execution time in seconds: 9.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +---Total execution time in seconds: 0.058809 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00048 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000441 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00029 +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000916 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.004222 +Total execution time in seconds: 0.000123 +Total execution time in seconds: 8.5E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.009608 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.015758 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.013967 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000114 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE session_key = :1 AND expires > :2 +Total execution time in seconds: 9.1E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 1.6E-5 +PDO::quote called with arguments:- 2019-11-05 18:35:03 +Total execution time in seconds: 1.5E-5 +PDO::prepare called with arguments:- UPDATE `sessions` SET `last_used` = '2019-11-05 18:35:03' WHERE `id` = '1' +Total execution time in seconds: 5.0E-5 +PDO::quote called with arguments:- 9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5 +Total execution time in seconds: 1.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `sessions` WHERE `session_key` = '9UOnkRcd5Is1zwT70E6hQGcXZNEpdUEQ1NBgV2fsg7OiKOmob5' +Total execution time in seconds: 7.5E-5 +PDO::quote called with arguments:- 1 +Total execution time in seconds: 2.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `users` WHERE `id` = '1' +Total execution time in seconds: 5.0E-5 +!!!constructing StockController +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000123 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `user_settings` WHERE user_id = :1 +Total execution time in seconds: 4.2E-5 +PDO::exec called with arguments:- SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +Total execution time in seconds: 0.003995 +PDO::query called with arguments:- SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +SELECT * FROM stock_current WHERE best_before_date IS NOT NULL UNION SELECT id, 0, 0, null, 0, 0, 0 FROM stock_missing_products_including_opened WHERE id NOT IN (SELECT product_id FROM stock_current) +Total execution time in seconds: 0.002486 +PDO::exec called with arguments:- SELECT * FROM stock_current_locations +SELECT * FROM stock_current_locations +Total execution time in seconds: 0.000959 +PDO::query called with arguments:- SELECT * FROM stock_current_locations +SELECT * FROM stock_current_locations +Total execution time in seconds: 0.000613 +PDO::exec called with arguments:- SELECT * FROM stock_missing_products_including_opened +SELECT * FROM stock_missing_products_including_opened +Total execution time in seconds: 0.001914 +PDO::query called with arguments:- SELECT * FROM stock_missing_products_including_opened +SELECT * FROM stock_missing_products_including_opened +Total execution time in seconds: 0.002026 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 3.8E-5 +PDO::quote called with arguments:- products +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `userfields` WHERE `entity` = 'products' ORDER BY `name` ASC +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` ORDER BY `name` ASC +Total execution time in seconds: 4.3E-5 +PDO::quote called with arguments:- products +Total execution time in seconds: 1.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `userfield_values_resolved` WHERE `entity` = 'products' ORDER BY `name` ASC +Total execution time in seconds: 0.000119 +PDO::prepare called with arguments:- SELECT * FROM `locations` ORDER BY `name` ASC +Total execution time in seconds: 7.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `product_groups` ORDER BY `name` ASC +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `userentities` WHERE show_in_sidebar_menu = 1 ORDER BY `name` ASC +Total execution time in seconds: 7.5E-5 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + !!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.0E-5 +Total execution time in seconds: 8.0E-6 ++++Total execution time in seconds: 0.007916 ++++object created ++++Total execution time in seconds: 0.003898 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.012591 +---Total execution time in seconds: 0.010149 +---object created +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000111 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +Total execution time in seconds: 0.010705 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + PDO::prepare called with arguments:- SELECT * FROM `quantity_units` + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 6.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 ++++Total execution time in seconds: 0.001459 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.004577 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + PDO::prepare called with arguments:- SELECT * FROM `quantity_units` + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 0.000109 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.001915 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.005823 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000125 +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + !!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.001346 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---creating new LessQL::Database object +---Total execution time in seconds: 0.005331 +---object created ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.2E-5 ++++Total execution time in seconds: 0.001844 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.5E-5 +---Total execution time in seconds: 0.005926 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.002308 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.0E-5 +---Total execution time in seconds: 0.009765 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.002589 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.00873 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 ++++Total execution time in seconds: 0.002011 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.005803 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.003138 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.5E-5 +---Total execution time in seconds: 0.013037 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 5.1E-5 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 ++++Total execution time in seconds: 0.001831 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.00731 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00012 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002854 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +---Total execution time in seconds: 0.007682 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.001785 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.007061 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.3E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.002129 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.8E-5 +---Total execution time in seconds: 0.009167 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +Total execution time in seconds: 8.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002978 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.7E-5 +---Total execution time in seconds: 0.009134 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 ++++Total execution time in seconds: 0.001985 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +---Total execution time in seconds: 0.006442 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000321 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.1E-5 ++++Total execution time in seconds: 0.002443 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.2E-5 +---Total execution time in seconds: 0.008779 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000112 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000182 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000232 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002213 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.008738 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.00245 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.007281 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.8E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +Total execution time in seconds: 0.000113 ++++Total execution time in seconds: 0.00174 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +---Total execution time in seconds: 0.005534 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +Total execution time in seconds: 3.9E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001806 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.006292 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002943 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.009102 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 5.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.001995 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.5E-5 +---Total execution time in seconds: 0.006996 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---object created +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +Total execution time in seconds: 3.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +Total execution time in seconds: 8.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.5E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000143 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.002899 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.035886 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 ++++Total execution time in seconds: 0.002049 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.007168 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.2E-5 +Total execution time in seconds: 5.5E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.00236 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.8E-5 +Total execution time in seconds: 6.9E-5 +---Total execution time in seconds: 0.008818 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002056 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.006783 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 6.2E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.0E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.5E-5 +Total execution time in seconds: 4.1E-5 ++++Total execution time in seconds: 0.007797 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 1.5E-5 +Total execution time in seconds: 5.8E-5 +---Total execution time in seconds: 0.019625 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000111 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002478 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-5 +---Total execution time in seconds: 0.007829 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.006001 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.010499 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.008556 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 4.1E-5 +Total execution time in seconds: 3.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 ++++Total execution time in seconds: 0.002092 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.007506 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +---creating new LessQL::Database object +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.003943 ++++object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.5E-5 ++++Total execution time in seconds: 0.002312 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +Total execution time in seconds: 0.000192 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.016713 +---object created +---Total execution time in seconds: 0.007735 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000105 +Total execution time in seconds: 4.2E-5 +Total execution time in seconds: 4.2E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 ++++Total execution time in seconds: 0.001636 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.006067 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 ++++Total execution time in seconds: 0.003514 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.008945 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +Total execution time in seconds: 6.9E-5 +---Total execution time in seconds: 0.018228 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.016031 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.7E-5 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002367 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.007894 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000107 +Total execution time in seconds: 3.8E-5 +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +Total execution time in seconds: 6.3E-5 +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000137 +!!!Starting up loading app +Total execution time in seconds: 3.8E-5 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.003711 ++++object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 5.6E-5 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.015603 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.002436 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.000405 +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.01084 +---object created +Total execution time in seconds: 0.000135 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 6.1E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002101 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.0E-6 +---Total execution time in seconds: 0.007761 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000167 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +Total execution time in seconds: 4.0E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 0.000111 +Total execution time in seconds: 0.00028 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 ++++Total execution time in seconds: 0.002575 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 0.000147 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.00819 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +Total execution time in seconds: 3.5E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.9E-5 ++++Total execution time in seconds: 0.003009 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.007265 +---object created +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.4E-5 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000218 ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.003312 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.008698 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000103 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00015 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.4E-5 ++++Total execution time in seconds: 0.002527 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.007516 +---object created +Total execution time in seconds: 7.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.7E-5 +Total execution time in seconds: 8.9E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002152 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.015021 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---object created +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 0.000104 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +Total execution time in seconds: 4.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 ++++Total execution time in seconds: 0.002583 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.009929 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +---creating new LessQL::Database object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000102 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.002323 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +---Total execution time in seconds: 0.009649 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.8E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Total execution time in seconds: 0.002818 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.007957 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +Total execution time in seconds: 5.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.2E-5 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 3.4E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +!!!Starting up loading app ++++Total execution time in seconds: 0.004086 ++++object created +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 +---Total execution time in seconds: 0.012165 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.002501 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 8.0E-6 +---Total execution time in seconds: 0.007082 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.003521 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---Total execution time in seconds: 0.008897 +---object created +Total execution time in seconds: 0.000182 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000158 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +Total execution time in seconds: 0.000174 +Total execution time in seconds: 0.000121 +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.7E-5 ++++Total execution time in seconds: 0.003077 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 +---Total execution time in seconds: 0.013339 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.003027 ++++object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.1E-5 +Total execution time in seconds: 8.7E-5 +---Total execution time in seconds: 0.01674 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.1E-5 ++++Total execution time in seconds: 0.003546 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.1E-5 +---Total execution time in seconds: 0.009876 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000129 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000273 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000259 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 7.0E-6 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Total execution time in seconds: 0.002904 ++++object created +Total execution time in seconds: 4.3E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.7E-5 +---Total execution time in seconds: 0.013032 +---object created +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +!!!Starting up loading app ++++Total execution time in seconds: 0.002854 ++++object created +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.2E-5 +---Total execution time in seconds: 0.008839 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.8E-5 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.001744 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 9.0E-6 +---Total execution time in seconds: 0.006065 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +Total execution time in seconds: 0.000144 +Total execution time in seconds: 0.000107 +!!!Starting up loading app +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +Total execution time in seconds: 0.000135 +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 0.000268 ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.9E-5 +Total execution time in seconds: 4.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 ++++Total execution time in seconds: 0.010427 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 +---Total execution time in seconds: 0.015566 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +Total execution time in seconds: 1.4E-5 ++++Total execution time in seconds: 0.002648 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 2.0E-5 +Total execution time in seconds: 0.000163 +Total execution time in seconds: 0.017657 +---Total execution time in seconds: 0.008353 +---object created +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000212 +---creating new LessQL::Database object ++++Creating new PDO object +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 4.5E-5 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002571 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.3E-5 +---Total execution time in seconds: 0.007955 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000109 +Total execution time in seconds: 3.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.6E-5 +Total execution time in seconds: 4.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000164 +Total execution time in seconds: 3.7E-5 +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.0E-5 +Total execution time in seconds: 0.000151 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 ++++Total execution time in seconds: 0.002576 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.007963 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.1E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + ++++Creating new PDO object +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 ++++Creating new PDO object +Total execution time in seconds: 4.1E-5 ++++Total execution time in seconds: 0.002693 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.4E-5 ++++object created ++++Total execution time in seconds: 0.004238 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.5E-5 +---Total execution time in seconds: 0.010292 +---object created +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---Total execution time in seconds: 0.027682 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++Creating new PDO object +---object created +Total execution time in seconds: 5.5E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.9E-5 ++++Total execution time in seconds: 0.008592 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +---creating new LessQL::Database object +Total execution time in seconds: 0.000151 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.8E-5 ++++Creating new PDO object +Total execution time in seconds: 9.9E-5 +---Total execution time in seconds: 0.023004 +---object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 2.0E-5 ++++Total execution time in seconds: 0.003644 ++++object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::setAttribute called with arguments:- 3, 2 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +Total execution time in seconds: 1.7E-5 +Total execution time in seconds: 3.8E-5 +---Total execution time in seconds: 0.020375 +---object created +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000214 +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +Total execution time in seconds: 0.000103 +Total execution time in seconds: 3.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.7E-5 +Total execution time in seconds: 9.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +Total execution time in seconds: 5.8E-5 +Total execution time in seconds: 9.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.00015 +!!!Starting up loading app +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + ---creating new LessQL::Database object +---creating new LessQL::Database object + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + ---creating new LessQL::Database object + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + ++++Creating new PDO object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +Total execution time in seconds: 1.5E-5 +PDO::setAttribute called with arguments:- 3, 2 ++++Total execution time in seconds: 0.004952 ++++object created ++++Total execution time in seconds: 0.004423 ++++object created +Total execution time in seconds: 1.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +---creating new LessQL::Database object ++++Total execution time in seconds: 0.007541 ++++object created +Total execution time in seconds: 2.3E-5 ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.014664 +---object created +Total execution time in seconds: 2.4E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.0E-5 +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.015463 +---object created +---Total execution time in seconds: 0.018434 +---object created +Total execution time in seconds: 1.2E-5 ++++Total execution time in seconds: 0.015485 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` ++++object created +Total execution time in seconds: 8.3E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +---Total execution time in seconds: 0.023195 +---object created +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000153 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000147 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +Total execution time in seconds: 0.000137 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000151 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.6E-5 +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.1E-5 +Total execution time in seconds: 0.000196 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.0E-5 +Total execution time in seconds: 6.8E-5 +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.2E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000217 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +!!!Starting up loading app +!!!Starting up loading app +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +---creating new LessQL::Database object +---creating new LessQL::Database object ++++Creating new PDO object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.4E-5 +---creating new LessQL::Database object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.6E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.3E-5 ++++Total execution time in seconds: 0.002618 ++++object created ++++Total execution time in seconds: 0.002927 ++++object created ++++Creating new PDO object ++++Total execution time in seconds: 0.008796 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.5E-5 +PDO::setAttribute called with arguments:- 3, 2 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 1.1E-5 +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 6.0E-6 +Total execution time in seconds: 1.1E-5 +---Total execution time in seconds: 0.016279 ++++Total execution time in seconds: 0.004408 ++++object created +---Total execution time in seconds: 0.013699 +---object created +---object created +PDO::setAttribute called with arguments:- 3, 2 +---Total execution time in seconds: 0.014385 +---object created +Total execution time in seconds: 6.0E-6 +---Total execution time in seconds: 0.012702 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000122 +Total execution time in seconds: 0.000129 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 8.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000125 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.1E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.7E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 9.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 0.000118 +Total execution time in seconds: 4.3E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 7.5E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 6.6E-5 +!!!Starting up loading app +!!!Array +( + [allow_url_fopen] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [allow_url_include] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [arg_separator.input] => Array + ( + [global_value] => & + [local_value] => & + [access] => 6 + ) + + [arg_separator.output] => Array + ( + [global_value] => & + [local_value] => & + [access] => 7 + ) + + [assert.active] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [assert.bail] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.callback] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [assert.exception] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.quiet_eval] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [assert.warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [auto_append_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [auto_detect_line_endings] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [auto_globals_jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [auto_prepend_file] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [browscap] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.discard_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [cgi.fix_pathinfo] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.force_redirect] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [cgi.nph] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cgi.redirect_status_env] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [cgi.rfc2616_headers] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [cli.pager] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [cli.prompt] => Array + ( + [global_value] => \b \> + [local_value] => \b \> + [access] => 7 + ) + + [curl.cainfo] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [date.default_latitude] => Array + ( + [global_value] => 31.7667 + [local_value] => 31.7667 + [access] => 7 + ) + + [date.default_longitude] => Array + ( + [global_value] => 35.2333 + [local_value] => 35.2333 + [access] => 7 + ) + + [date.sunrise_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.sunset_zenith] => Array + ( + [global_value] => 90.583333 + [local_value] => 90.583333 + [access] => 7 + ) + + [date.timezone] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [default_charset] => Array + ( + [global_value] => UTF-8 + [local_value] => UTF-8 + [access] => 7 + ) + + [default_mimetype] => Array + ( + [global_value] => text/html + [local_value] => text/html + [access] => 7 + ) + + [default_socket_timeout] => Array + ( + [global_value] => 60 + [local_value] => 60 + [access] => 7 + ) + + [disable_classes] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [disable_functions] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [display_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [display_startup_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [doc_root] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [docref_ext] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [docref_root] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [enable_dl] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [enable_post_data_reading] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [error_append_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_prepend_string] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [error_reporting] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [expose_php] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [extension_dir] => Array + ( + [global_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [local_value] => /usr/local/lib/php/extensions/no-debug-non-zts-20170718 + [access] => 4 + ) + + [fastcgi.error_header] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [fastcgi.logging] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [file_uploads] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [filter.default] => Array + ( + [global_value] => unsafe_raw + [local_value] => unsafe_raw + [access] => 6 + ) + + [filter.default_flags] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [fpm.config] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [gd.jpeg_ignore_warning] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [hard_timeout] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 4 + ) + + [highlight.comment] => Array + ( + [global_value] => #FF8000 + [local_value] => #FF8000 + [access] => 7 + ) + + [highlight.default] => Array + ( + [global_value] => #0000BB + [local_value] => #0000BB + [access] => 7 + ) + + [highlight.html] => Array + ( + [global_value] => #000000 + [local_value] => #000000 + [access] => 7 + ) + + [highlight.keyword] => Array + ( + [global_value] => #007700 + [local_value] => #007700 + [access] => 7 + ) + + [highlight.string] => Array + ( + [global_value] => #DD0000 + [local_value] => #DD0000 + [access] => 7 + ) + + [html_errors] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [iconv.input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [iconv.output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [ignore_repeated_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_repeated_source] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [ignore_user_abort] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [implicit_flush] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [include_path] => Array + ( + [global_value] => .:/usr/local/lib/php + [local_value] => .:/usr/local/lib/php + [access] => 7 + ) + + [input_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [log_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [log_errors_max_len] => Array + ( + [global_value] => 1024 + [local_value] => 1024 + [access] => 7 + ) + + [mail.add_x_header] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mail.force_extra_parameters] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [mail.log] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [max_execution_time] => Array + ( + [global_value] => 30 + [local_value] => 30 + [access] => 7 + ) + + [max_file_uploads] => Array + ( + [global_value] => 20 + [local_value] => 20 + [access] => 6 + ) + + [max_input_nesting_level] => Array + ( + [global_value] => 64 + [local_value] => 64 + [access] => 6 + ) + + [max_input_time] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 6 + ) + + [max_input_vars] => Array + ( + [global_value] => 1000 + [local_value] => 1000 + [access] => 6 + ) + + [mbstring.detect_order] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.encoding_translation] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [mbstring.func_overload] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mbstring.http_input] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.http_output_conv_mimetypes] => Array + ( + [global_value] => ^(text/|application/xhtml\+xml) + [local_value] => ^(text/|application/xhtml\+xml) + [access] => 7 + ) + + [mbstring.internal_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [mbstring.language] => Array + ( + [global_value] => neutral + [local_value] => neutral + [access] => 7 + ) + + [mbstring.strict_detection] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mbstring.substitute_character] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [memory_limit] => Array + ( + [global_value] => 128M + [local_value] => 128M + [access] => 7 + ) + + [mysqlnd.collect_memory_statistics] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [mysqlnd.collect_statistics] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [mysqlnd.debug] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [mysqlnd.fetch_data_copy] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.log_mask] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [mysqlnd.mempool_default_size] => Array + ( + [global_value] => 16000 + [local_value] => 16000 + [access] => 7 + ) + + [mysqlnd.net_cmd_buffer_size] => Array + ( + [global_value] => 4096 + [local_value] => 4096 + [access] => 7 + ) + + [mysqlnd.net_read_buffer_size] => Array + ( + [global_value] => 32768 + [local_value] => 32768 + [access] => 7 + ) + + [mysqlnd.net_read_timeout] => Array + ( + [global_value] => 86400 + [local_value] => 86400 + [access] => 7 + ) + + [mysqlnd.sha256_server_public_key] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [mysqlnd.trace_alloc] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.blacklist_filename] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.consistency_checks] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.dups_fix] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.enable] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [opcache.enable_cli] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.enable_file_override] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.error_log] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.file_cache_consistency_checks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.file_cache_only] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.file_update_protection] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.force_restart_timeout] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 4 + ) + + [opcache.huge_code_pages] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.inherited_hack] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.interned_strings_buffer] => Array + ( + [global_value] => 8 + [local_value] => 8 + [access] => 4 + ) + + [opcache.lockfile_path] => Array + ( + [global_value] => /tmp + [local_value] => /tmp + [access] => 4 + ) + + [opcache.log_verbosity_level] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.max_accelerated_files] => Array + ( + [global_value] => 10000 + [local_value] => 10000 + [access] => 4 + ) + + [opcache.max_file_size] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.max_wasted_percentage] => Array + ( + [global_value] => 5 + [local_value] => 5 + [access] => 4 + ) + + [opcache.memory_consumption] => Array + ( + [global_value] => 128 + [local_value] => 128 + [access] => 4 + ) + + [opcache.opt_debug_level] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.optimization_level] => Array + ( + [global_value] => 0x7FFFBFFF + [local_value] => 0x7FFFBFFF + [access] => 4 + ) + + [opcache.preferred_memory_model] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.protect_memory] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.restrict_api] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [opcache.revalidate_freq] => Array + ( + [global_value] => 2 + [local_value] => 2 + [access] => 7 + ) + + [opcache.revalidate_path] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [opcache.save_comments] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.use_cwd] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [opcache.validate_permission] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_root] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [opcache.validate_timestamps] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [open_basedir] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [openssl.cafile] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [openssl.capath] => Array + ( + [global_value] => + [local_value] => + [access] => 2 + ) + + [output_buffering] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 6 + ) + + [output_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [pcre.backtrack_limit] => Array + ( + [global_value] => 1000000 + [local_value] => 1000000 + [access] => 7 + ) + + [pcre.jit] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [pcre.recursion_limit] => Array + ( + [global_value] => 100000 + [local_value] => 100000 + [access] => 7 + ) + + [phar.cache_list] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [phar.readonly] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [phar.require_hash] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [post_max_size] => Array + ( + [global_value] => 8M + [local_value] => 8M + [access] => 6 + ) + + [precision] => Array + ( + [global_value] => 14 + [local_value] => 14 + [access] => 7 + ) + + [realpath_cache_size] => Array + ( + [global_value] => 4096K + [local_value] => 4096K + [access] => 4 + ) + + [realpath_cache_ttl] => Array + ( + [global_value] => 120 + [local_value] => 120 + [access] => 4 + ) + + [register_argc_argv] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [report_memleaks] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [report_zend_debug] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [request_order] => Array + ( + [global_value] => + [local_value] => + [access] => 6 + ) + + [sendmail_from] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [sendmail_path] => Array + ( + [global_value] => /usr/sbin/sendmail -t -i + [local_value] => /usr/sbin/sendmail -t -i + [access] => 4 + ) + + [serialize_precision] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [session.auto_start] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [session.cache_expire] => Array + ( + [global_value] => 180 + [local_value] => 180 + [access] => 7 + ) + + [session.cache_limiter] => Array + ( + [global_value] => nocache + [local_value] => nocache + [access] => 7 + ) + + [session.cookie_domain] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.cookie_httponly] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_lifetime] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.cookie_path] => Array + ( + [global_value] => / + [local_value] => / + [access] => 7 + ) + + [session.cookie_secure] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.gc_divisor] => Array + ( + [global_value] => 100 + [local_value] => 100 + [access] => 7 + ) + + [session.gc_maxlifetime] => Array + ( + [global_value] => 1440 + [local_value] => 1440 + [access] => 7 + ) + + [session.gc_probability] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.lazy_write] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.name] => Array + ( + [global_value] => PHPSESSID + [local_value] => PHPSESSID + [access] => 7 + ) + + [session.referer_check] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.save_handler] => Array + ( + [global_value] => files + [local_value] => files + [access] => 7 + ) + + [session.save_path] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.serialize_handler] => Array + ( + [global_value] => php + [local_value] => php + [access] => 7 + ) + + [session.sid_bits_per_character] => Array + ( + [global_value] => 4 + [local_value] => 4 + [access] => 7 + ) + + [session.sid_length] => Array + ( + [global_value] => 32 + [local_value] => 32 + [access] => 7 + ) + + [session.trans_sid_hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [session.trans_sid_tags] => Array + ( + [global_value] => a=href,area=href,frame=src,form= + [local_value] => a=href,area=href,frame=src,form= + [access] => 7 + ) + + [session.upload_progress.cleanup] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.enabled] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.freq] => Array + ( + [global_value] => 1% + [local_value] => 1% + [access] => 2 + ) + + [session.upload_progress.min_freq] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 2 + ) + + [session.upload_progress.name] => Array + ( + [global_value] => PHP_SESSION_UPLOAD_PROGRESS + [local_value] => PHP_SESSION_UPLOAD_PROGRESS + [access] => 2 + ) + + [session.upload_progress.prefix] => Array + ( + [global_value] => upload_progress_ + [local_value] => upload_progress_ + [access] => 2 + ) + + [session.use_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_only_cookies] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [session.use_strict_mode] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [session.use_trans_sid] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [short_open_tag] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 6 + ) + + [SMTP] => Array + ( + [global_value] => localhost + [local_value] => localhost + [access] => 7 + ) + + [smtp_port] => Array + ( + [global_value] => 25 + [local_value] => 25 + [access] => 7 + ) + + [sqlite3.defensive] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 4 + ) + + [sqlite3.extension_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [sys_temp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [track_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [unserialize_callback_func] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [upload_max_filesize] => Array + ( + [global_value] => 2M + [local_value] => 2M + [access] => 6 + ) + + [upload_tmp_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [url_rewriter.hosts] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [url_rewriter.tags] => Array + ( + [global_value] => form= + [local_value] => form= + [access] => 7 + ) + + [user_agent] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [user_dir] => Array + ( + [global_value] => + [local_value] => + [access] => 4 + ) + + [user_ini.cache_ttl] => Array + ( + [global_value] => 300 + [local_value] => 300 + [access] => 4 + ) + + [user_ini.filename] => Array + ( + [global_value] => .user.ini + [local_value] => .user.ini + [access] => 4 + ) + + [variables_order] => Array + ( + [global_value] => EGPCS + [local_value] => EGPCS + [access] => 6 + ) + + [xmlrpc_error_number] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [xmlrpc_errors] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zend.assertions] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.detect_unicode] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.enable_gc] => Array + ( + [global_value] => 1 + [local_value] => 1 + [access] => 7 + ) + + [zend.multibyte] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 2 + ) + + [zend.script_encoding] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + + [zend.signal_check] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 4 + ) + + [zlib.output_compression] => Array + ( + [global_value] => 0 + [local_value] => 0 + [access] => 7 + ) + + [zlib.output_compression_level] => Array + ( + [global_value] => -1 + [local_value] => -1 + [access] => 7 + ) + + [zlib.output_handler] => Array + ( + [global_value] => + [local_value] => + [access] => 7 + ) + +) + +---creating new LessQL::Database object ++++Creating new PDO object +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.9E-5 ++++Total execution time in seconds: 0.002616 ++++object created +PDO::setAttribute called with arguments:- 3, 2 +Total execution time in seconds: 3.3E-5 +---Total execution time in seconds: 0.008064 +---object created +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.6E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.0E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.8E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 3.4E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 4.9E-5 +PDO::prepare called with arguments:- SELECT * FROM `quantity_units` +Total execution time in seconds: 5.3E-5 diff --git a/data_store/viewcache/19cac18e2e279ce0ab04f1126e1b8846e2af3068.php b/data_store/viewcache/19cac18e2e279ce0ab04f1126e1b8846e2af3068.php new file mode 100644 index 00000000..9b087bba --- /dev/null +++ b/data_store/viewcache/19cac18e2e279ce0ab04f1126e1b8846e2af3068.php @@ -0,0 +1,230 @@ +startSection('title', $__t('Shopping list')); ?> +startSection('activeNav', 'shoppinglist'); ?> +startSection('viewJsName', 'shoppinglist'); ?> + +startPush('pageScripts'); ?> + + + + +stopPush(); ?> + +startPush('pageStyles'); ?> + +stopPush(); ?> + +startSection('content'); ?> + +
+
+ + +
+
+
+ + + + + + + + + + + + + +
+
+ + +
+
+

+ yieldContent('title'); ?> + + + + + + + + + + + + + + + + +

+

+
+
+ +
+
+ + +
+
+ + +
+
+ +
+
+ + + + + + + + + + make('components.userfields_thead', array( + 'userfields' => $userfields + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + + + addLoop($__currentLoopData); foreach($__currentLoopData as $listItem): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + + + + + + + + make('components.userfields_tbody', array( + 'userfields' => $userfields, + 'userfieldValues' => FindAllObjectsInArrayByPropertyValue($userfieldValues, 'object_id', $listItem->product_id) + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + popLoop(); $loop = $__env->getLastLoop(); ?> + +
/ Hiden product groupHidden status
+ + + + + + + + + + product_id)): ?> data-toggle="tooltip" title="amount . ' ' . $__n($listItem->amount, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $listItem->product_id)->qu_id_purchase)->name, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $listItem->product_id)->qu_id_purchase)->name_plural), FindObjectInArrayByPropertyValue($products, 'id', $listItem->product_id)->name, $listItem->amount)); ?>" > + + + + product_id)): ?> product_id)->name); ?>
note); ?> +
+ amount); ?> product_id)): ?>amount, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $listItem->product_id)->qu_id_purchase)->name, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $listItem->product_id)->qu_id_purchase)->name_plural)); ?> + + product_id)->product_group_id)): ?> product_id)->product_group_id)->name); ?> + + product_id) !== null): ?> belowminstockamount +
+
+ +
+ make('components.calendarcard', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> +
+
+ +
+
+
+ + + + +
+
+
+ + + +
+

+ + + +

+ name != $__t("Shopping list")): ?> +

+ name); ?> + +

+ +
+ : + +
+
+
+ + + + + + + + + addLoop($__currentLoopData); foreach($__currentLoopData as $listItem): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + + + + + popLoop(); $loop = $__env->getLastLoop(); ?> + +
/
+ product_id)): ?> product_id)->name); ?>
note); ?> +
+ amount); ?> product_id)): ?>amount, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $listItem->product_id)->qu_id_purchase)->name, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $listItem->product_id)->qu_id_purchase)->name_plural)); ?> +
+
+
+
+
+
+

+
+
+
+stopSection(); ?> + +make('layout.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/data_store/viewcache/39d21e45b4010006e2e476f14bd7e98aac6b042a.php b/data_store/viewcache/39d21e45b4010006e2e476f14bd7e98aac6b042a.php new file mode 100644 index 00000000..204c4d2d --- /dev/null +++ b/data_store/viewcache/39d21e45b4010006e2e476f14bd7e98aac6b042a.php @@ -0,0 +1,28 @@ + + +startPush('componentScripts'); ?> + +stopPush(); ?> + +startPush('pageScripts'); ?> + +stopPush(); ?> + +startPush('pageStyles'); ?> + +stopPush(); ?> + + + \ No newline at end of file diff --git a/data_store/viewcache/4a0d0078dcb363915872e1e8e401c2f7cacbcfe7.php b/data_store/viewcache/4a0d0078dcb363915872e1e8e401c2f7cacbcfe7.php new file mode 100644 index 00000000..243ce39f --- /dev/null +++ b/data_store/viewcache/4a0d0078dcb363915872e1e8e401c2f7cacbcfe7.php @@ -0,0 +1,50 @@ +startPush('componentScripts'); ?> + +stopPush(); ?> + + + + + + + + + + + + + + +
+ +
+
name="" data-target-input="nearest"> + type="text" required class="form-control datetimepicker-input " + data-target="#" data-format="" + data-init-with-now="" + data-init-value="" + data-limit-end-to-now="" + data-limit-start-to-now="" + data-next-input-selector="" + data-earlier-than-limit="" /> +
+
+
+
+
+
+ +
+ + +
+ +
+
+ \ No newline at end of file diff --git a/data_store/viewcache/4b3e495a8ce1359c2f68eb6c33e07337aa6b2a0f.php b/data_store/viewcache/4b3e495a8ce1359c2f68eb6c33e07337aa6b2a0f.php new file mode 100644 index 00000000..63da33fd --- /dev/null +++ b/data_store/viewcache/4b3e495a8ce1359c2f68eb6c33e07337aa6b2a0f.php @@ -0,0 +1,37 @@ +startSection('title', $__t('Login')); ?> +startSection('viewJsName', 'login'); ?> + +startSection('content'); ?> +
+
+

yieldContent('title'); ?>

+ +
+ +
+ + +
+ +
+ + +
+
+ +
+ +
+ + + +
+
+
+stopSection(); ?> + +make('layout.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/data_store/viewcache/57fe3959c5e97932a57e2d10e997533fecfd8f71.php b/data_store/viewcache/57fe3959c5e97932a57e2d10e997533fecfd8f71.php new file mode 100644 index 00000000..3b14325c --- /dev/null +++ b/data_store/viewcache/57fe3959c5e97932a57e2d10e997533fecfd8f71.php @@ -0,0 +1,12 @@ + 0): ?> + +addLoop($__currentLoopData); foreach($__currentLoopData as $userfield): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + +show_as_column_in_tables == 1): ?> + caption); ?> + + +popLoop(); $loop = $__env->getLastLoop(); ?> + + + \ No newline at end of file diff --git a/data_store/viewcache/5d2f03dcf0ea442cee57afbc3b65dd60e85038ad.php b/data_store/viewcache/5d2f03dcf0ea442cee57afbc3b65dd60e85038ad.php new file mode 100644 index 00000000..a6bc3e5e --- /dev/null +++ b/data_store/viewcache/5d2f03dcf0ea442cee57afbc3b65dd60e85038ad.php @@ -0,0 +1,264 @@ + + startSection('title', $__t('Edit recipe')); ?> + + startSection('title', $__t('Create recipe')); ?> + + +startSection('viewJsName', 'recipeform'); ?> + +startPush('pageScripts'); ?> + + +stopPush(); ?> + +startPush('pageStyles'); ?> + +stopPush(); ?> + +startSection('content'); ?> +
+
+

yieldContent('title'); ?>

+ + + + + + + picture_file_name)): ?> + + + +
+
+ +
+
+
+ +
+ + +
+
+ +
+ + +
+ + base_servings; } else { $value = 1; } ?> + make('components.numberpicker', array( + 'id' => 'base_servings', + 'label' => 'Servings', + 'min' => 1, + 'value' => $value, + 'invalidFeedback' => $__t('This cannot be lower than %s', '1'), + 'hint' => $__t('The ingredients listed here result in this amount of servings') + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + +
+
+ + not_check_shoppinglist == 1): ?> checked class="form-check-input" type="checkbox" id="not_check_shoppinglist" name="not_check_shoppinglist" value="1"> + +
+
+ +
+ +
+ + +
+
+ + make('components.userfieldsform', array( + 'userfields' => $userfields, + 'entity' => 'recipes' + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + +
+
+ +
+
+
+

+ + + + + + +

+ + + + + + + + + + + + + + addLoop($__currentLoopData); foreach($__currentLoopData as $recipePosition): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + + + + + + + + popLoop(); $loop = $__env->getLastLoop(); ?> + + +
Hiden ingredient group
+ + + + + + + + product_id)->name); ?> + + + product_id); + $productQuConversions = FindAllObjectsInArrayByPropertyValue($quantityUnitConversionsResolved, 'product_id', $product->id); + $productQuConversions = FindAllObjectsInArrayByPropertyValue($productQuConversions, 'from_qu_id', $product->qu_id_stock); + $productQuConversion = FindObjectInArrayByPropertyValue($productQuConversions, 'to_qu_id', $recipePosition->qu_id); + if ($productQuConversion) + { + $recipePosition->amount = $recipePosition->amount * $productQuConversion->factor; + } + ?> + variable_amount)): ?> + variable_amount); ?> + + + amount == round($recipePosition->amount)): ?>amount)); ?>amount); ?> + + amount, FindObjectInArrayByPropertyValue($quantityunits, 'id', $recipePosition->qu_id)->name, FindObjectInArrayByPropertyValue($quantityunits, 'id', $recipePosition->qu_id)->name_plural)); ?> + + + + + + + ingredient_group); ?> + +
+
+
+ +
+
+

+ + + + + + +

+ + + + + + + + + + + addLoop($__currentLoopData); foreach($__currentLoopData as $recipeNesting): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + + + + + + popLoop(); $loop = $__env->getLastLoop(); ?> + + +
+ + + + + + + + includes_recipe_id)->name); ?> + + + servings); ?> + +
+
+
+ +
+
+ + + picture_file_name)): ?> +

+

+ +

+ +
+
+
+
+ + +stopSection(); ?> + +make('layout.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/data_store/viewcache/7a587134e83dd5e10195488fea86663d4fb1b9e9.php b/data_store/viewcache/7a587134e83dd5e10195488fea86663d4fb1b9e9.php new file mode 100644 index 00000000..ef773059 --- /dev/null +++ b/data_store/viewcache/7a587134e83dd5e10195488fea86663d4fb1b9e9.php @@ -0,0 +1,43 @@ +startPush('componentScripts'); ?> + + +stopPush(); ?> + +
+
+ + + + + + + + +
+
+

+ +
+

+ +
+ + : +
+ :
+ :
+ :
+ :
+ :
+ : + +

+ + +
+ + + +
+
+ \ No newline at end of file diff --git a/data_store/viewcache/7bfad8d8bfd10d511647e8f534be836dae05c01f.php b/data_store/viewcache/7bfad8d8bfd10d511647e8f534be836dae05c01f.php new file mode 100644 index 00000000..24a74157 --- /dev/null +++ b/data_store/viewcache/7bfad8d8bfd10d511647e8f534be836dae05c01f.php @@ -0,0 +1,129 @@ +startSection('title', $__t('Tasks')); ?> +startSection('activeNav', 'tasks'); ?> +startSection('viewJsName', 'tasks'); ?> + +startPush('pageScripts'); ?> + + + +stopPush(); ?> + +startPush('pageStyles'); ?> + +stopPush(); ?> + +startSection('content'); ?> +
+
+

+ yieldContent('title'); ?> + + + + +

+

+

+
+
+ +
+
+ + +
+
+ + +
+
+
+ + +
+
+
+ +
+
+ + + + + + + + + + + make('components.userfields_thead', array( + 'userfields' => $userfields + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + + + addLoop($__currentLoopData); foreach($__currentLoopData as $task): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + table-warning "> + + + + + + + + make('components.userfields_tbody', array( + 'userfields' => $userfields, + 'userfieldValues' => FindAllObjectsInArrayByPropertyValue($userfieldValues, 'object_id', $task->id) + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + popLoop(); $loop = $__env->getLastLoop(); ?> + +
Hidden categoryHidden status
+ done == 0): ?> + name)); ?>" + data-task-id="id); ?>" + data-task-name="name); ?>"> + + + + name)); ?>" + data-task-id="id); ?>" + data-task-name="name); ?>"> + + + + + + + + + + + name); ?> + + + due_date); ?> + + + category_id != null): ?> category_id)->name); ?> + + assigned_to_user_id != null): ?> assigned_to_user_id))); ?> + + done == 1): ?> text-muted due_date) && $task->due_date < date('Y-m-d')): ?> overdue due_date) && $task->due_date < date('Y-m-d', strtotime("+$nextXDays days"))): ?> duesoon +
+
+
+stopSection(); ?> + +make('layout.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/data_store/viewcache/7c8eb218e5b8735076b4a5ec83d6999af734f724.php b/data_store/viewcache/7c8eb218e5b8735076b4a5ec83d6999af734f724.php new file mode 100644 index 00000000..89562104 --- /dev/null +++ b/data_store/viewcache/7c8eb218e5b8735076b4a5ec83d6999af734f724.php @@ -0,0 +1,27 @@ + 0): ?> + +addLoop($__currentLoopData); foreach($__currentLoopData as $userfield): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + +show_as_column_in_tables == 1): ?> + name) ?> + + + type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_CHECKBOX): ?> + value == 1): ?> + type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_PRESET_CHECKLIST): ?> + ', $userfieldObject->value); ?> + + type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_LINK): ?> + value); ?> + + value); ?> + + + + + + +popLoop(); $loop = $__env->getLastLoop(); ?> + + + \ No newline at end of file diff --git a/data_store/viewcache/8bfed2511a9e63f9b7d6395e3ff778ec424da5a4.php b/data_store/viewcache/8bfed2511a9e63f9b7d6395e3ff778ec424da5a4.php new file mode 100644 index 00000000..1249d5e7 --- /dev/null +++ b/data_store/viewcache/8bfed2511a9e63f9b7d6395e3ff778ec424da5a4.php @@ -0,0 +1,242 @@ +startSection('title', $__t('Stock overview')); ?> +startSection('activeNav', 'stockoverview'); ?> +startSection('viewJsName', 'stockoverview'); ?> + +startPush('pageScripts'); ?> + + +stopPush(); ?> + +startPush('pageStyles'); ?> + +stopPush(); ?> + +startSection('content'); ?> +
+
+

yieldContent('title'); ?> + + + + + + + + + + + +

+ +

+

+ +

+
+
+ +
+
+ + +
+ +
+ + +
+ +
+ + +
+
+ + +
+
+ +
+
+ + + + + + + + + + + + make('components.userfields_thead', array( + 'userfields' => $userfields + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + + + addLoop($__currentLoopData); foreach($__currentLoopData as $currentStockEntry): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + amount > 0): ?> table-warning product_id) !== null): ?> table-info "> + + + + + + + product_id)->product_group_id) ?> + + + make('components.userfields_tbody', array( + 'userfields' => $userfields, + 'userfieldValues' => FindAllObjectsInArrayByPropertyValue($userfieldValues, 'object_id', $currentStockEntry->product_id) + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + popLoop(); $loop = $__env->getLastLoop(); ?> + +
Hidden locationHidden statusHidden product group
+ + 1 + + + + + + + + 1 + + + + + amount); ?> amount, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $currentStockEntry->product_id)->qu_id_stock)->name, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $currentStockEntry->product_id)->qu_id_stock)->name_plural)); ?> + amount_opened > 0): ?>amount_opened)); ?> + is_aggregated_amount == 1): ?> + + amount_aggregated); ?> amount_aggregated, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $currentStockEntry->product_id)->qu_id_stock)->name, FindObjectInArrayByPropertyValue($quantityunits, 'id', FindObjectInArrayByPropertyValue($products, 'id', $currentStockEntry->product_id)->qu_id_stock)->name_plural)); ?> + + amount_opened_aggregated > 0): ?>amount_opened_aggregated)); ?> + + + + best_before_date); ?> + + + product_id); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $locationsForProduct): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + location_id)->name); ?> + + popLoop(); $loop = $__env->getLastLoop(); ?> + + best_before_date < date('Y-m-d 23:59:59', strtotime('-1 days')) && $currentStockEntry->amount > 0): ?> expired best_before_date < date('Y-m-d 23:59:59', strtotime("+$nextXDays days")) && $currentStockEntry->amount > 0): ?> expiring product_id) !== null): ?> belowminstockamount + + name); ?> +
+
+
+ + +stopSection(); ?> + +make('layout.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/data_store/viewcache/8c45b988174216735b56839991ffb942255949ad.php b/data_store/viewcache/8c45b988174216735b56839991ffb942255949ad.php new file mode 100644 index 00000000..69e2ad3b --- /dev/null +++ b/data_store/viewcache/8c45b988174216735b56839991ffb942255949ad.php @@ -0,0 +1,130 @@ +startSection('title', $__t('Batteries overview')); ?> +startSection('activeNav', 'batteriesoverview'); ?> +startSection('viewJsName', 'batteriesoverview'); ?> + +startPush('pageScripts'); ?> + +stopPush(); ?> + +startSection('content'); ?> +
+
+

yieldContent('title'); ?> + + + + +

+

+

+
+
+ +
+
+ + +
+
+ + +
+
+ +
+
+ + + + + + + + + + make('components.userfields_thead', array( + 'userfields' => $userfields + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + + + addLoop($__currentLoopData); foreach($__currentLoopData as $curentBatteryEntry): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + table-warning "> + + + + + + + make('components.userfields_tbody', array( + 'userfields' => $userfields, + 'userfieldValues' => FindAllObjectsInArrayByPropertyValue($userfieldValues, 'object_id', $curentBatteryEntry->battery_id) + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + popLoop(); $loop = $__env->getLastLoop(); ?> + +
Hidden status
+ + + + + + last_tracked_time); ?> + + + battery_id)->charge_interval_days > 0): ?> + next_estimated_charge_time); ?> + + + ... + + + "battery_id)->charge_interval_days > 0 && $curentBatteryEntry->next_estimated_charge_time < date('Y-m-d H:i:s')): ?> overdue battery_id)->charge_interval_days > 0 && $curentBatteryEntry->next_estimated_charge_time < date('Y-m-d H:i:s', strtotime("+$nextXDays days"))): ?> duesoon +
+
+
+ + +stopSection(); ?> + +make('layout.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/data_store/viewcache/957b4116c291a84fef1574ba8fd17cfd04bf68ca.php b/data_store/viewcache/957b4116c291a84fef1574ba8fd17cfd04bf68ca.php new file mode 100644 index 00000000..7877fe71 --- /dev/null +++ b/data_store/viewcache/957b4116c291a84fef1574ba8fd17cfd04bf68ca.php @@ -0,0 +1,23 @@ +startPush('componentScripts'); ?> + +stopPush(); ?> + +
+
+ + + + + + + + +
+
+

+ :
+ :
+ :
+
+
+ \ No newline at end of file diff --git a/data_store/viewcache/9c18943018de8b0d6192e2bee416e2ec48b762c4.php b/data_store/viewcache/9c18943018de8b0d6192e2bee416e2ec48b762c4.php new file mode 100644 index 00000000..1960408e --- /dev/null +++ b/data_store/viewcache/9c18943018de8b0d6192e2bee416e2ec48b762c4.php @@ -0,0 +1,20 @@ +startPush('componentScripts'); ?> + +stopPush(); ?> + + + + + + +
+ + +
+
+ \ No newline at end of file diff --git a/data_store/viewcache/a1d3550b16c42761b213c96f314a94a48d635636.php b/data_store/viewcache/a1d3550b16c42761b213c96f314a94a48d635636.php new file mode 100644 index 00000000..fbca0142 --- /dev/null +++ b/data_store/viewcache/a1d3550b16c42761b213c96f314a94a48d635636.php @@ -0,0 +1,95 @@ +startSection('title', $__t('Purchase')); ?> +startSection('activeNav', 'purchase'); ?> +startSection('viewJsName', 'purchase'); ?> + +startSection('content'); ?> +
+
+

yieldContent('title'); ?>

+ +
+ + make('components.productpicker', array( + 'products' => $products, + 'nextInputSelector' => '#best_before_date .datetimepicker-input' + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + make('components.datetimepicker', array( + 'id' => 'best_before_date', + 'label' => 'Best before', + 'format' => 'YYYY-MM-DD', + 'initWithNow' => false, + 'limitEndToNow' => false, + 'limitStartToNow' => false, + 'invalidFeedback' => $__t('A best before date is required'), + 'nextInputSelector' => '#amount', + 'additionalCssClasses' => 'date-only-datetimepicker', + 'shortcutValue' => '2999-12-31', + 'shortcutLabel' => 'Never expires', + 'earlierThanInfoLimit' => date('Y-m-d'), + 'earlierThanInfoText' => $__t('The given date is earlier than today, are you sure?'), + 'additionalGroupCssClasses' => $additionalGroupCssClasses + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + make('components.numberpicker', array( + 'id' => 'amount', + 'label' => 'Amount', + 'hintId' => 'amount_qu_unit', + 'min' => 1, + 'invalidFeedback' => $__t('The amount cannot be lower than %s', '1'), + 'additionalHtmlContextHelp' => '
' . $__t('Tare weight handling enabled - please weigh the whole container, the amount to be posted will be automatically calculcated') . '
' + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + make('components.numberpicker', array( + 'id' => 'price', + 'label' => 'Price', + 'min' => 0, + 'step' => 0.0001, + 'value' => '', + 'hint' => $__t('in %s and based on the purchase quantity unit', GROCY_CURRENCY), + 'invalidFeedback' => $__t('The price cannot be lower than %s', '0'), + 'isRequired' => false, + 'additionalGroupCssClasses' => 'mb-1' + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> +
+ + +
+
+ + +
+ + + + + + make('components.locationpicker', array( + 'locations' => $locations, + 'isRequired' => false + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + + + + +
+
+ +
+ make('components.productcard', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> +
+
+stopSection(); ?> + +make('layout.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/data_store/viewcache/a719dd39ae3425fe1fbe35f2b27e142d533daa57.php b/data_store/viewcache/a719dd39ae3425fe1fbe35f2b27e142d533daa57.php new file mode 100644 index 00000000..c5128c97 --- /dev/null +++ b/data_store/viewcache/a719dd39ae3425fe1fbe35f2b27e142d533daa57.php @@ -0,0 +1,34 @@ +startPush('componentScripts'); ?> + +stopPush(); ?> + + + + + + + + + + + + + + + +
+ +
+ type="number" class="form-control numberpicker " id="" name="" value="" min="" max="" step="" required > +
+
+
+
+
+
+
+
+ + +
+ \ No newline at end of file diff --git a/data_store/viewcache/aea3dd024b357cb5f729714f3ed8fb2ad1d2bdb1.php b/data_store/viewcache/aea3dd024b357cb5f729714f3ed8fb2ad1d2bdb1.php new file mode 100644 index 00000000..076d7a5e --- /dev/null +++ b/data_store/viewcache/aea3dd024b357cb5f729714f3ed8fb2ad1d2bdb1.php @@ -0,0 +1,319 @@ +startSection('title', $__t('Recipes')); ?> +startSection('activeNav', 'recipes'); ?> +startSection('viewJsName', 'recipes'); ?> + +startSection('content'); ?> + + +
+ +
+

+ yieldContent('title'); ?> + + + + +

+ +
+
+ + +
+ +
+ + +
+
+ + + +
+ +
+ + + + + + + + + + + make('components.userfields_thead', array( + 'userfields' => $userfields + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + + + addLoop($__currentLoopData); foreach($__currentLoopData as $recipe): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + + + + + + + + + make('components.userfields_tbody', array( + 'userfields' => $userfields, + 'userfieldValues' => FindAllObjectsInArrayByPropertyValue($userfieldValues, 'object_id', $recipe->id) + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + + + popLoop(); $loop = $__env->getLastLoop(); ?> + +
Hidden status for sorting of "Requirements fulfilled" columnHidden status for filtering by statusHidden recipe ingredient product names
+ name); ?> + + + desired_servings); ?> + + + id)->need_fulfilled == 1): ?>id)->need_fulfilled_with_shopping_list == 1): ?> + id)->need_fulfilled == 1): ?>id)->need_fulfilled_with_shopping_list == 1): ?>id)->missing_products_count, 'Not enough in stock, %s ingredient missing but already on the shopping list', 'Not enough in stock, %s ingredients missing but already on the shopping list')); ?>id)->missing_products_count, 'Not enough in stock, %s ingredient missing', 'Not enough in stock, %s ingredients missing')); ?> + + id)->missing_products_count); ?> + + + id)->need_fulfilled == 1): ?> enoughtinstock id)->need_fulfilled_with_shopping_list == 1): ?> enoughinstockwithshoppinglist notenoughinstock + + id); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $recipePos): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + product_id)->name . ' '); ?> + + popLoop(); $loop = $__env->getLastLoop(); ?> +
+
+ + + +
+
+ + +
+
+ name); ?>   + + + + + +    + + + + + + + + + +
+
+
+
+
+ make('components.numberpicker', array( + 'id' => 'servings-scale', + 'label' => 'Servings', + 'min' => 1, + 'value' => $selectedRecipe->desired_servings, + 'invalidFeedback' => $__t('This cannot be lower than %s', '1'), + 'additionalAttributes' => 'data-recipe-id="' . $selectedRecipe->id . '"' + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> +
+ 0): ?> +
+ +

+

+

+
+ + +
+ +

+

+

+
+ +
+
+ + + addLoop($__currentLoopData); foreach($__currentLoopData as $selectedRecipeSubRecipe): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> +
+

name); ?>

+
+ + picture_file_name)): ?> +

+ + + id); ?> + 0): ?> +
+
+
+
    + + addLoop($__currentLoopData); foreach($__currentLoopData as $selectedRecipePosition): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + ingredient_group): ?> +
    ingredient_group); ?>
    + +
  • + product_id); + $productQuConversions = FindAllObjectsInArrayByPropertyValue($quantityUnitConversionsResolved, 'product_id', $product->id); + $productQuConversions = FindAllObjectsInArrayByPropertyValue($productQuConversions, 'from_qu_id', $product->qu_id_stock); + $productQuConversion = FindObjectInArrayByPropertyValue($productQuConversions, 'to_qu_id', $selectedRecipePosition->qu_id); + if ($productQuConversion) + { + $selectedRecipePosition->recipe_amount = $selectedRecipePosition->recipe_amount * $productQuConversion->factor; + } + ?> + recipe_variable_amount)): ?> + recipe_variable_amount); ?> + + + recipe_amount == round($selectedRecipePosition->recipe_amount, 2)): ?>recipe_amount, 2)); ?>recipe_amount); ?> + + recipe_amount, FindObjectInArrayByPropertyValue($quantityUnits, 'id', $selectedRecipePosition->qu_id)->name, FindObjectInArrayByPropertyValue($quantityUnits, 'id', $selectedRecipePosition->qu_id)->name_plural)); ?> product_id)->name); ?> + + need_fulfilled == 1): ?>need_fulfilled_with_shopping_list == 1): ?> + id)->need_fulfilled == 1): ?> id)->missing_amount, 2), round(FindObjectInArrayByPropertyValue($selectedRecipeSubRecipesPositions, 'recipe_pos_id', $selectedRecipePosition->id)->amount_on_shopping_list, 2))); ?> + + note)): ?> +
    note); ?>
    + +
  • + ingredient_group; ?> + popLoop(); $loop = $__env->getLastLoop(); ?> +
+ + description)): ?> +
+
+ description; ?> + +
+ + popLoop(); $loop = $__env->getLastLoop(); ?> + + + picture_file_name)): ?> +

+ + + count() > 0): ?> +
+
+
+
    + + addLoop($__currentLoopData); foreach($__currentLoopData as $selectedRecipePosition): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + ingredient_group): ?> +
    ingredient_group); ?>
    + +
  • + product_id); + $productQuConversions = FindAllObjectsInArrayByPropertyValue($quantityUnitConversionsResolved, 'product_id', $product->id); + $productQuConversions = FindAllObjectsInArrayByPropertyValue($productQuConversions, 'from_qu_id', $product->qu_id_stock); + $productQuConversion = FindObjectInArrayByPropertyValue($productQuConversions, 'to_qu_id', $selectedRecipePosition->qu_id); + if ($productQuConversion) + { + $selectedRecipePosition->recipe_amount = $selectedRecipePosition->recipe_amount * $productQuConversion->factor; + } + ?> + recipe_variable_amount)): ?> + recipe_variable_amount); ?> + + + recipe_amount == round($selectedRecipePosition->recipe_amount, 2)): ?>recipe_amount, 2)); ?>recipe_amount); ?> + + recipe_amount, FindObjectInArrayByPropertyValue($quantityUnits, 'id', $selectedRecipePosition->qu_id)->name, FindObjectInArrayByPropertyValue($quantityUnits, 'id', $selectedRecipePosition->qu_id)->name_plural)); ?> product_id)->name); ?> + + need_fulfilled == 1): ?>need_fulfilled_with_shopping_list == 1): ?> + id)->need_fulfilled == 1): ?> id)->missing_amount, 2), round(FindObjectInArrayByPropertyValue($recipePositionsResolved, 'recipe_pos_id', $selectedRecipePosition->id)->amount_on_shopping_list, 2))); ?> + + note)): ?> +
    note); ?>
    + +
  • + ingredient_group; ?> + popLoop(); $loop = $__env->getLastLoop(); ?> +
+ + description)): ?> +
+
+ description; ?> + +
+ +
+
+ +
+ +
+ addLoop($__currentLoopData); foreach($__currentLoopData as $recipePos): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + recipe_id, $includedRecipeIdsAbsolute) && $recipePos->missing_amount > 0): ?> + +
+ +
+ product_id)->name); ?> + +
+ + popLoop(); $loop = $__env->getLastLoop(); ?> +
+stopSection(); ?> + +make('layout.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> \ No newline at end of file diff --git a/data_store/viewcache/afa5e1136a37e89676e37ef7c5ac4e8b5b4a0516.php b/data_store/viewcache/afa5e1136a37e89676e37ef7c5ac4e8b5b4a0516.php new file mode 100644 index 00000000..daa3efb8 --- /dev/null +++ b/data_store/viewcache/afa5e1136a37e89676e37ef7c5ac4e8b5b4a0516.php @@ -0,0 +1,108 @@ +startPush('componentScripts'); ?> + +stopPush(); ?> + + 0): ?> + +
+

+ + addLoop($__currentLoopData); foreach($__currentLoopData as $userfield): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> + + type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_SINGLE_LINE_TEXT): ?> +
+ + +
+ type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_SINGLE_MULTILINE_TEXT): ?> +
+ + +
+ type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_INTEGRAL_NUMBER): ?> + make('components.numberpicker', array( + 'id' => $userfield->name, + 'label' => $userfield->caption, + 'noNameAttribute' => true, + 'min' => 0, + 'isRequired' => false, + 'additionalCssClasses' => 'userfield-input', + 'additionalAttributes' => 'data-userfield-name="' . $userfield->name . '"' + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_DECIMAL_NUMBER): ?> + make('components.numberpicker', array( + 'id' => '', + 'label' => $userfield->caption, + 'noNameAttribute' => true, + 'min' => 0, + 'step' => 0.01, + 'isRequired' => false, + 'additionalCssClasses' => 'userfield-input', + 'additionalAttributes' => 'data-userfield-name="' . $userfield->name . '"' + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_DATE): ?> + make('components.datetimepicker', array( + 'id' => $userfield->name, + 'label' => $userfield->caption, + 'noNameAttribute' => true, + 'format' => 'YYYY-MM-DD', + 'initWithNow' => false, + 'limitEndToNow' => false, + 'limitStartToNow' => false, + 'additionalGroupCssClasses' => 'date-only-datetimepicker', + 'isRequired' => false, + 'additionalCssClasses' => 'userfield-input', + 'additionalAttributes' => 'data-userfield-name="' . $userfield->name . '"' + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_DATETIME): ?> + make('components.datetimepicker', array( + 'id' => $userfield->name, + 'label' => $userfield->caption, + 'noNameAttribute' => true, + 'format' => 'YYYY-MM-DD HH:mm:ss', + 'initWithNow' => false, + 'limitEndToNow' => false, + 'limitStartToNow' => false, + 'isRequired' => false, + 'additionalCssClasses' => 'userfield-input', + 'additionalAttributes' => 'data-userfield-name="' . $userfield->name . '"' + ), \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_CHECKBOX): ?> +
+
+ + +
+
+ type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_PRESET_LIST): ?> +
+ + +
+ type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_PRESET_CHECKLIST): ?> +
+ + +
+ type == \Grocy\Services\UserfieldsService::USERFIELD_TYPE_LINK): ?> +
+ + +
+ + + popLoop(); $loop = $__env->getLastLoop(); ?> + +
+ + + \ No newline at end of file diff --git a/data_store/viewcache/b2b4fe4d54950bc85b1226911a70bb9c1f601dac.php b/data_store/viewcache/b2b4fe4d54950bc85b1226911a70bb9c1f601dac.php new file mode 100644 index 00000000..186de9bc --- /dev/null +++ b/data_store/viewcache/b2b4fe4d54950bc85b1226911a70bb9c1f601dac.php @@ -0,0 +1,22 @@ +startPush('componentScripts'); ?> + +stopPush(); ?> + + + + + + + + +
+ + +
+
+ \ No newline at end of file diff --git a/data_store/viewcache/c030d61cec8494e8f3b3c1941a331867552e684f.php b/data_store/viewcache/c030d61cec8494e8f3b3c1941a331867552e684f.php new file mode 100644 index 00000000..efc63c7f --- /dev/null +++ b/data_store/viewcache/c030d61cec8494e8f3b3c1941a331867552e684f.php @@ -0,0 +1,32 @@ +startPush('componentScripts'); ?> + +stopPush(); ?> + + + + + + + + + + + +
+ + +
+
+ +
+ +
+
+ +make('components.barcodescanner', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> + \ No newline at end of file diff --git a/data_store/viewcache/e3b11bbec6075caba3edd0a878f615b4bba9c000.php b/data_store/viewcache/e3b11bbec6075caba3edd0a878f615b4bba9c000.php new file mode 100644 index 00000000..a743db41 --- /dev/null +++ b/data_store/viewcache/e3b11bbec6075caba3edd0a878f615b4bba9c000.php @@ -0,0 +1,446 @@ + + + + + + + + + + + + + + + + + + + + + + + + + <?php echo $__env->yieldContent('title'); ?> | grocy + + + + + + + + + + + + + + + + + yieldPushContent('pageStyles'); ?> + + + + + + + + + + + + + +
+
+
+
+ yieldContent('content'); ?> +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + yieldPushContent('pageScripts'); ?> + yieldPushContent('componentScripts'); ?> + yieldContent('viewJsName')))): ?> + + + + + + + + \ No newline at end of file diff --git a/data_store/viewcache/fec608612fe1aa786c4f9bb67feb433ccfc78010.php b/data_store/viewcache/fec608612fe1aa786c4f9bb67feb433ccfc78010.php new file mode 100644 index 00000000..095f79f3 --- /dev/null +++ b/data_store/viewcache/fec608612fe1aa786c4f9bb67feb433ccfc78010.php @@ -0,0 +1,14 @@ +startPush('componentScripts'); ?> + +stopPush(); ?> + +
+
+ + +
+
+
+
+
+ \ No newline at end of file diff --git a/grocy.openapi.json b/grocy.openapi.json index 4fd92a4d..194b4765 100644 --- a/grocy.openapi.json +++ b/grocy.openapi.json @@ -18,6 +18,40 @@ { "name": "Generic entity interactions", "description": "A limited set of entities are directly exposed for convenience" + }, + { + "name": "System" + }, + { + "name": "User management" + }, + { + "name": "User settings" + }, + { + "name": "Stock" + }, + { + "name": "Stock \"by-barcode\"", + "description": "Some of the *Stock* routes, but access them by the products barcode instead of its id" + }, + { + "name": "Recipes" + }, + { + "name": "Chores" + }, + { + "name": "Batteries" + }, + { + "name": "Tasks" + }, + { + "name": "Calendar" + }, + { + "name": "Files" } ], "paths": { @@ -129,7 +163,7 @@ "required": true, "description": "A valid entity name", "schema": { - "$ref": "#/components/internalSchemas/ExposedEntity" + "$ref": "#/components/internalSchemas/ExposedEntityButNoListing" } } ], @@ -163,7 +197,7 @@ { "$ref": "#/components/schemas/StockEntry" } - ] + ] } } } @@ -274,7 +308,7 @@ "required": true, "description": "A valid entity name", "schema": { - "$ref": "#/components/internalSchemas/ExposedEntity" + "$ref": "#/components/internalSchemas/ExposedEntityButNoListing" } }, { @@ -626,7 +660,7 @@ } } } - }, + }, "/files/{group}/{fileName}": { "get": { "summary": "Serves the given file", @@ -673,8 +707,7 @@ "schema": { "type": "integer" } - } - , + }, { "in": "query", "name": "best_fit_width", @@ -1050,12 +1083,64 @@ } } } + } + }, + "/stock/entry/{entryId}": { + "get": { + "summary": "Returns details of the given stock", + "tags": [ + "Stock" + ], + "parameters": [ + { + "in": "path", + "name": "entryId", + "required": true, + "description": "A valid stock row id", + "schema": { + "type": "integer" + } + } + ], + "responses": { + "200": { + "description": "A StockEntry Response object", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/StockEntry" + } + } + } + }, + "400": { + "description": "The operation was not successful (possible errors are: Not existing product)", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GenericErrorResponse" + } + } + } + } + } }, "put": { "summary": "Edits the stock entry", "tags": [ "Stock" ], + "parameters": [ + { + "in": "path", + "name": "entryId", + "required": true, + "description": "A valid stock row id", + "schema": { + "type": "integer" + } + } + ], "requestBody": { "required": true, "content": { @@ -1063,11 +1148,6 @@ "schema": { "type": "object", "properties": { - "stock_row_id": { - "type": "number", - "format": "number", - "description": "The Stock Row Id" - }, "amount": { "type": "number", "format": "number", @@ -1078,23 +1158,34 @@ "format": "date", "description": "The best before date of the product to add, when omitted, the current date is used" }, + "price": { + "type": "number", + "format": "number", + "description": "The price per purchase quantity unit in configured currency" + }, + "open": { + "type": "boolean", + "description": "If the stock entry was already opened or not" + }, "location_id": { "type": "number", "format": "integer", "description": "If omitted, the default location of the product is used" }, - "price": { - "type": "number", - "format": "number", - "description": "The price per purchase quantity unit in configured currency" + "purchased_date": { + "type": "string", + "format": "date", + "description": "The date when this stock entry was purchased" } }, "example": { - "stock_row_id": 2, - "amount": 1, - "best_before_date": "2019-01-19", - "location_id": 2, - "price": "1.99" + "id": "2", + "amount": "1", + "best_before_date": "2021-07-19", + "purchased_date": "2020-01-01", + "price": "22.03", + "open": false, + "location_id": "4" } } } @@ -1106,7 +1197,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/StockLogEntry" + "$ref": "#/components/schemas/StockEntry" } } } @@ -1259,6 +1350,15 @@ "schema": { "type": "integer" } + }, + { + "in": "query", + "name": "include_sub_products", + "required": false, + "description": "If sub products should be included (if the given product is a parent product and in addition to the ones of the given product)", + "schema": { + "type": "boolean" + } } ], "responses": { @@ -1713,7 +1813,7 @@ "get": { "summary": "Returns details of the given product by its barcode", "tags": [ - "Stock" + "Stock \"by-barcode\"" ], "parameters": [ { @@ -1754,7 +1854,7 @@ "post": { "summary": "Adds the given amount of the by its barcode given product to stock", "tags": [ - "Stock" + "Stock \"by-barcode\"" ], "parameters": [ { @@ -1836,7 +1936,7 @@ "post": { "summary": "Removes the given amount of the by its barcode given product from stock", "tags": [ - "Stock" + "Stock \"by-barcode\"" ], "parameters": [ { @@ -1919,7 +2019,7 @@ "post": { "summary": "Transfers the given amount of the by its barcode given product from one location to another (this is currently not supported for tare weight handling enabled products)", "tags": [ - "Stock" + "Stock \"by-barcode\"" ], "parameters": [ { @@ -1995,7 +2095,7 @@ "post": { "summary": "Inventories the by its barcode given product (adds/removes based on the given new amount)", "tags": [ - "Stock" + "Stock \"by-barcode\"" ], "parameters": [ { @@ -2067,7 +2167,7 @@ "post": { "summary": "Marks the given amount of the by its barcode given product as opened", "tags": [ - "Stock" + "Stock \"by-barcode\"" ], "parameters": [ { @@ -3203,7 +3303,6 @@ "quantity_unit_conversions", "shopping_list", "shopping_lists", - "stock", "recipes", "recipes_pos", "recipes_nestings", @@ -3218,10 +3317,28 @@ "meal_plan" ] }, - "ExposedEntitiesPreventListing": { + "ExposedEntityButNoListing": { "type": "string", "enum": [ - "api_keys" + "products", + "chores", + "batteries", + "locations", + "quantity_units", + "quantity_unit_conversions", + "shopping_list", + "shopping_lists", + "recipes", + "recipes_pos", + "recipes_nestings", + "tasks", + "task_categories", + "product_groups", + "equipment", + "userfields", + "userentities", + "userobjects", + "meal_plan" ] }, "StockTransactionType": { @@ -3392,8 +3509,11 @@ "location_id": { "type": "integer" }, - "name": { + "location_name": { "type": "string" + }, + "location_is_freezer": { + "type": "integer" } }, "example": { @@ -4025,6 +4145,9 @@ "is_aggregated_amount": { "type": "boolean", "description": "Indicates wheter this product has sub-products or not / if the fields `amount_aggregated` and `amount_opened_aggregated` are filled" + }, + "product": { + "$ref": "#/components/schemas/Product" } } }, @@ -4080,7 +4203,20 @@ "missing_products": { "type": "array", "items": { - "$ref": "#/components/schemas/CurrentStockResponse" + "properties": { + "id": { + "type": "integer" + }, + "name": { + "type": "string" + }, + "amount_missing": { + "type": "number" + }, + "is_partly_in_stock": { + "type": "integer" + } + } } } } diff --git a/helpers/extensions.php b/helpers/extensions.php index 956d14c7..5a69eef7 100644 --- a/helpers/extensions.php +++ b/helpers/extensions.php @@ -82,7 +82,7 @@ function SumArrayValue($array, $propertyName) $sum = 0; foreach($array as $object) { - $sum += $object->{$propertyName}; + $sum += floatval($object->{$propertyName}); } return $sum; diff --git a/localization/da/chore_period_types.po b/localization/da/chore_period_types.po index e521501c..f70c8d04 100644 --- a/localization/da/chore_period_types.po +++ b/localization/da/chore_period_types.po @@ -1,5 +1,7 @@ # Translators: # Troels Siggaard , 2019 +# Rasmus Bojsen , 2019 +# Brian Moos Lindberg , 2019 # msgid "" msgstr "" @@ -7,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Troels Siggaard , 2019\n" +"Last-Translator: Brian Moos Lindberg , 2019\n" "Language-Team: Danish (https://www.transifex.com/grocy/teams/93189/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +22,7 @@ msgid "manually" msgstr "manuelt" msgid "dynamic-regular" -msgstr "gentagende-dynamisk" +msgstr "dynamisk-regelmæssig" msgid "daily" msgstr "daglig" @@ -30,3 +32,6 @@ msgstr "ugentlig" msgid "monthly" msgstr "månedlig" + +msgid "yearly" +msgstr "årlig" diff --git a/localization/da/demo_data.po b/localization/da/demo_data.po index 58286743..35343f86 100644 --- a/localization/da/demo_data.po +++ b/localization/da/demo_data.po @@ -1,6 +1,8 @@ # Translators: # dark159123 , 2019 # Troels Siggaard , 2019 +# Rasmus Bojsen , 2019 +# Brian Moos Lindberg , 2019 # msgid "" msgstr "" @@ -8,7 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Troels Siggaard , 2019\n" +"Last-Translator: Brian Moos Lindberg , 2019\n" "Language-Team: Danish (https://www.transifex.com/grocy/teams/93189/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,8 +39,8 @@ msgstr "Køleskab" msgid "Piece" msgid_plural "Pieces" -msgstr[0] "Styk" -msgstr[1] "Stykker" +msgstr[0] "stk" +msgstr[1] "stk" msgid "Pack" msgid_plural "Packs" @@ -81,7 +83,7 @@ msgid "Pickles" msgstr "Syltede agurker" msgid "Gulash soup" -msgstr "Gulash" +msgstr "Gullashsuppe" msgid "Yogurt" msgstr "Yoghurt" @@ -161,14 +163,11 @@ msgstr "Tysk" msgid "Italian" msgstr "Italiensk" -msgid "Demo in different language" -msgstr "Demo på et andet sprog" - msgid "This is the note content of the recipe ingredient" msgstr "Dette er indholdet af opskrift-ingrediensens notefeltet" msgid "Demo User" -msgstr "Demo Bruger" +msgstr "Demobruger" msgid "Gram" msgid_plural "Grams" @@ -218,7 +217,7 @@ msgid "Vegetables/Fruits" msgstr "Frugt og grønt" msgid "Refrigerated products" -msgstr "Køleskabsprodukter" +msgstr "Køleskabsvarer" msgid "Coffee machine" msgstr "Kaffemaskine" @@ -284,27 +283,66 @@ msgid "Polish" msgstr "Polsk" msgid "Milk Chocolate" -msgstr "" +msgstr "Mælkechokolade" msgid "Dark Chocolate" -msgstr "" +msgstr "Mørk chokolade" msgid "Slice" msgid_plural "Slices" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Skive" +msgstr[1] "Skiver" msgid "Example userentity" -msgstr "" +msgstr "Eksempel-brugerenhed" msgid "This is an example user entity..." -msgstr "" +msgstr "Dette er en eksempel-brugerenhed..." msgid "Custom field" -msgstr "" +msgstr "Brugerdefineret felt" msgid "Example field value..." -msgstr "" +msgstr "Eksempel-feltværdi..." msgid "Waffle rolls" +msgstr "Vaffelruller" + +msgid "Danish" +msgstr "Dansk" + +msgid "Dutch" +msgstr "Hollandsk" + +msgid "Norwegian" +msgstr "Norsk" + +msgid "Demo" +msgstr "Demo" + +msgid "Stable version" +msgstr "Stabil version" + +msgid "Preview version" +msgstr "Forhåndsvisningsversion" + +msgid "current release" +msgstr "aktuel udgivelse" + +msgid "not yet released" +msgstr "Ikke frigivet endnu" + +msgid "Portuguese (Brazil)" +msgstr "Portugisisk (Brasilien)" + +msgid "This is a note" +msgstr "" + +msgid "Freezer" +msgstr "" + +msgid "Hungarian" +msgstr "" + +msgid "Slovak" msgstr "" diff --git a/localization/da/stock_transaction_types.po b/localization/da/stock_transaction_types.po index 5b4f9fb8..24faa186 100644 --- a/localization/da/stock_transaction_types.po +++ b/localization/da/stock_transaction_types.po @@ -1,5 +1,6 @@ # Translators: # Troels Siggaard , 2019 +# Brian Moos Lindberg , 2019 # msgid "" msgstr "" @@ -7,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Troels Siggaard , 2019\n" +"Last-Translator: Brian Moos Lindberg , 2019\n" "Language-Team: Danish (https://www.transifex.com/grocy/teams/93189/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +20,12 @@ msgstr "" msgid "purchase" msgstr "køb" +msgid "transfer_from" +msgstr "flyt_fra" + +msgid "transfer_to" +msgstr "flyt_til" + msgid "consume" msgstr "forbrug" @@ -27,3 +34,12 @@ msgstr "beholdningsrettelse" msgid "product-opened" msgstr "produkt-åbnet" + +msgid "stock-edit-old" +msgstr "lager-redigering-gammel" + +msgid "stock-edit-new" +msgstr "lager-redigering-ny" + +msgid "self-production" +msgstr "" diff --git a/localization/da/strings.po b/localization/da/strings.po index 9f16bff3..6621e66e 100644 --- a/localization/da/strings.po +++ b/localization/da/strings.po @@ -1,6 +1,8 @@ # Translators: # dark159123 , 2019 # Bernd Bestel , 2019 +# Troels Siggaard , 2019 +# Brian Moos Lindberg , 2019 # msgid "" msgstr "" @@ -8,7 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Bernd Bestel , 2019\n" +"Last-Translator: Brian Moos Lindberg , 2019\n" "Language-Team: Danish (https://www.transifex.com/grocy/teams/93189/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,35 +20,35 @@ msgstr "" "X-Domain: grocy/strings\n" msgid "Stock overview" -msgstr "Beholdnings oversigt" +msgstr "Lageroversigt" msgid "%s product expires" msgid_plural "%s products expiring" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s produkt udløber" +msgstr[1] "%s varer udløber" msgid "within the next day" msgid_plural "within the next %s days" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "indenfor den næstkommende dag" +msgstr[1] "indenfor de næste %s dage" msgid "%s product is already expired" msgid_plural "%s products are already expired" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s vare er allerede udløbet" +msgstr[1] "%s varer er allerede udløbet" msgid "%s product is below defined min. stock amount" msgid_plural "%s products are below defined min. stock amount" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s vare er under den definerede minimumsbeholdning" +msgstr[1] "%s varer er under den definerede minimumsbeholdning" msgid "Product" -msgstr "Produkt" +msgstr "Vare" msgid "%s Product" msgid_plural "%s Products" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s Vare" +msgstr[1] "%s Varer" msgid "Amount" msgstr "Mængde" @@ -58,34 +60,34 @@ msgid "Logout" msgstr "Log ud" msgid "Chores overview" -msgstr "Pligt oversigt" +msgstr "Pligtoversigt" msgid "Batteries overview" -msgstr "Batteri oversigt" +msgstr "Batterioversigt" msgid "Purchase" msgstr "Køb" msgid "Consume" -msgstr "Brug" +msgstr "Forbrug" msgid "Inventory" -msgstr "Beholdning" +msgstr "Statusoptælling" msgid "Shopping list" msgstr "Indkøbsliste" msgid "Chore tracking" -msgstr "Pligt overvågning" +msgstr "Registering af pligter" msgid "Battery tracking" -msgstr "Batteri overvågning" +msgstr "Batteriregistrering" msgid "Locations" msgstr "Steder" msgid "Quantity units" -msgstr "Mængde enheder" +msgstr "Mængdeenheder" msgid "Chores" msgstr "Pligter" @@ -97,10 +99,10 @@ msgid "Chore" msgstr "Pligt" msgid "Next estimated tracking" -msgstr "" +msgstr "Næste forventede registrering" msgid "Last tracked" -msgstr "Sidst overvåget" +msgstr "Sidst registreret" msgid "Battery" msgstr "Batteri" @@ -118,13 +120,13 @@ msgid "OK" msgstr "OK" msgid "Product overview" -msgstr "Produkt oversigt" +msgstr "Vareoversigt" msgid "Stock quantity unit" -msgstr "Standard enhed" +msgstr "Lagermængdeenhed" msgid "Stock amount" -msgstr "Standard mængde" +msgstr "Lagerbeholdning" msgid "Last purchased" msgstr "Sidst købt" @@ -136,12 +138,11 @@ msgid "Spoiled" msgstr "Udløbet" msgid "Barcode lookup is disabled" -msgstr "Stregkode opslag er slået fra" +msgstr "Stregkodeopslag er deaktiveret" msgid "" "will be added to the list of barcodes for the selected product on submit" -msgstr "" -"Bliver tilføjet til stregkodelisten for det valgte produkt når du sender" +msgstr "bliver tilføjet til stregkodelisten for den valgte vare når du gemmer" msgid "New amount" msgstr "Ny mængde" @@ -150,25 +151,25 @@ msgid "Note" msgstr "Note" msgid "Tracked time" -msgstr "Overvåget tid" +msgstr "Tid registreret" msgid "Chore overview" -msgstr "Pligt oversigt" +msgstr "Pligtoversigt" msgid "Tracked count" -msgstr "Antal overvågede" +msgstr "Antal registrerede" msgid "Battery overview" -msgstr "Batteri oversigt" +msgstr "Batterioversigt" msgid "Charge cycles count" msgstr "Antal opladninger" msgid "Create shopping list item" -msgstr "Lav indkøbsliste punkt" +msgstr "Opret punkt på indkøbslisten" msgid "Edit shopping list item" -msgstr "Ændr indkøbsliste punkt" +msgstr "Rediger punkt på indkøbslisten" msgid "Save" msgstr "Gem" @@ -180,114 +181,116 @@ msgid "Name" msgstr "Navn" msgid "Location" -msgstr "Sted" +msgstr "Placering" msgid "Min. stock amount" -msgstr "Mindste beholdning" +msgstr "Min. beholdning" msgid "QU purchase" -msgstr "QU køb" +msgstr "Mængdeenhed køb" msgid "QU stock" -msgstr "QU beholdning" +msgstr "Mængdeenhed på lager" msgid "QU factor" -msgstr "" +msgstr "Mængdeenhed faktor" msgid "Description" msgstr "Beskrivelse" msgid "Create product" -msgstr "Lav produkt" +msgstr "Opret vare" msgid "Barcode(s)" msgstr "Stegkode(r)" msgid "Minimum stock amount" -msgstr "Minimum mængde" +msgstr "Minimumsbeholdning" msgid "Default best before days" msgstr "Standard bedst før dage" msgid "Quantity unit purchase" -msgstr "" +msgstr "Mængdeenhed ved køb" msgid "Quantity unit stock" -msgstr "" +msgstr "Beholdningstype" msgid "Factor purchase to stock quantity unit" -msgstr "" +msgstr "Konverteringfaktor ved køb til beholdningstypen" msgid "Create location" -msgstr "Lav placering" +msgstr "Opret placering" msgid "Create quantity unit" -msgstr "Lav mængde enhed" +msgstr "Opret mængdeenhed" msgid "Period type" msgstr "Periode type" msgid "Period days" -msgstr "" +msgstr "Periode dage" msgid "Create chore" -msgstr "Lav pligt" +msgstr "Opret pligt" msgid "Used in" msgstr "Brugt i" msgid "Create battery" -msgstr "Lav batteri" +msgstr "Opret batteri" msgid "Edit battery" -msgstr "Ændr batteri" +msgstr "Rediger batteri" msgid "Edit chore" -msgstr "Ændr pligt" +msgstr "Rediger pligt" msgid "Edit quantity unit" -msgstr "Ændr mængde enhed" +msgstr "Rediger mængdeenhed" msgid "Edit product" -msgstr "Ændr produkt" +msgstr "Rediger vare" msgid "Edit location" -msgstr "Ændr placering" +msgstr "Rediger placering" msgid "Record data" msgstr "Optag data" msgid "Manage master data" -msgstr "" +msgstr "Administrer stamdata" msgid "This will apply to added products" -msgstr "Dette vil gælde tilføjede produkter" +msgstr "Dette vil gælde for tilføjede varer" msgid "never" msgstr "aldrig" msgid "Add products that are below defined min. stock amount" -msgstr "Tilføj produkter der er under minimumsantallet" +msgstr "Tilføj varer der er under minimumsbeholdningen" msgid "" "For purchases this amount of days will be added to today for the best before" " date suggestion" msgstr "" +"For køb, vil dette antal dage blive tilføjet til dags dato for forslag til " +"bedst før dato " -msgid "This means 1 %s purchased will be converted into %s %s in stock" -msgstr "Dette betyder at 1 %s bliver lavet om til %s %s i beholdningen" +msgid "This means 1 %1$s purchased will be converted into %2$s %3$s in stock" +msgstr "Dette betyder 1 %1$s købt bliver konverteret til %2$s %3$s på lageret" msgid "Login" -msgstr "Login" +msgstr "Log ind" msgid "Username" msgstr "Brugernavn" msgid "Password" -msgstr "Kode" +msgstr "Adgangskode" msgid "Invalid credentials, please try again" -msgstr "Ugyldige informationer, prøv igen" +msgstr "Ugyldig brugernavn og/eller adgangskode, prøv igen" msgid "Are you sure to delete battery \"%s\"?" msgstr "Er du sikker på du vil slette batteriet \"%s\"?" @@ -302,43 +305,43 @@ msgid "Are you sure to delete chore \"%s\"?" msgstr "Er du sikker på du vil slette pligten \"%s\"?" msgid "\"%s\" could not be resolved to a product, how do you want to proceed?" -msgstr "\"%s\" kunne ikke findes som produkt. Hvordan vil du fortsætte?" +msgstr "\"%s\" kunne ikke findes som vare. Hvordan vil du fortsætte?" msgid "Create or assign product" -msgstr "Lav eller tilknyt produkt" +msgstr "Opret eller tilknyt vare" msgid "Cancel" -msgstr "Afbryd" +msgstr "Annuller" msgid "Add as new product" -msgstr "Tilføj som nyt produkt" +msgstr "Tilføj som ny vare" msgid "Add as barcode to existing product" -msgstr "Tilføj som stregkode til et eksisterende produkt" +msgstr "Tilføj som stregkode til en eksisterende vare" msgid "Add as new product and prefill barcode" -msgstr "Tilføj som nyt produkt og udfyld stregkoden på forhånd" +msgstr "Tilføj som ny vare og udfyld stregkoden på forhånd" msgid "Are you sure to delete quantity unit \"%s\"?" -msgstr "Er du sikker på du vil slette mængde enheden \"%s\"?" +msgstr "Er du sikker på du vil slette mængdeenheden \"%s\"?" msgid "Are you sure to delete product \"%s\"?" -msgstr "Er du sikker på du vil slette produktet \"%s\"?" +msgstr "Er du sikker på du vil slette varen \"%s\"?" msgid "Are you sure to delete location \"%s\"?" msgstr "Er du sikker på du vil slette placeringen \"%s\"?" msgid "Manage API keys" -msgstr "Styr API nøgler" +msgstr "Administrer API nøgler" msgid "REST API & data model documentation" -msgstr "REST API & datamodel dokumentation" +msgstr "REST API & datamodel-dokumentation" msgid "API keys" msgstr "API nøgler" msgid "Create new API key" -msgstr "Lav ny API nøgle" +msgstr "Opret ny API nøgle" msgid "API key" msgstr "API nøgle" @@ -347,10 +350,10 @@ msgid "Expires" msgstr "Udløber" msgid "Created" -msgstr "Lavet" +msgstr "Oprettet" msgid "This product is not in stock" -msgstr "Dette produkt er ikke i beholdningen" +msgstr "Denne vare er ikke på lager" msgid "This means %s will be added to stock" msgstr "Dette betyder %s bliver tilføjet til beholdningen" @@ -359,51 +362,50 @@ msgid "This means %s will be removed from stock" msgstr "Dette betyder at %s bliver fjernet fra beholdningen" msgid "" -"This means it is estimated that a new execution of this chore is tracked %s " -"days after the last was tracked" +"This means the next execution of this chore is scheduled %s days after the " +"last execution" msgstr "" +"Det betyder at næste udførelse af denne pligt er planlagt %sdage efter " +"sidste udførelse." -msgid "Removed %s %s of %s from stock" -msgstr "Fjernede %s %s af %s fra beholdningen" +msgid "Removed %1$s of %2$s from stock" +msgstr "Fjerede %1$s af %2$s fra beholdningen" msgid "About grocy" -msgstr "Omkring Grocy" +msgstr "Om grocy" msgid "Close" msgstr "Luk" msgid "Released on" -msgstr "" +msgstr "Udgivet den" -msgid "Consume %s %s of %s" -msgstr "Brug %s %s af %s" +msgid "Added %1$s of %2$s to stock" +msgstr "Tilføjet %1$s af %2$s til beholdningen" -msgid "Added %s %s of %s to stock" -msgstr "Tilføjede %s %s af %s til beholdningen" +msgid "Stock amount of %1$s is now %2$s" +msgstr "Beholdning af %1$s er nu %2$s" -msgid "Stock amount of %s is now %s %s" -msgstr "Mængden af %s er nu %s %s" +msgid "Tracked execution of chore %1$s on %2$s" +msgstr "Registreret udførelse af pligt %1$s på %2$s" -msgid "Tracked execution of chore %s on %s" -msgstr "Overvågede udførslen af pligt %s på %s" - -msgid "Tracked charge cycle of battery %s on %s" -msgstr "" +msgid "Tracked charge cycle of battery %1$s on %2$s" +msgstr "Registreret ladecyklus af batteri %1$s på %2$s" msgid "Consume all %s which are currently in stock" -msgstr "Brug alle %s i beholdningen" +msgstr "Forbrug alle %s i beholdningen" msgid "All" msgstr "Alle" msgid "Track charge cycle of battery %s" -msgstr "Overvåg opladningscyklus af batteri %s" +msgstr "Registrer opladningscyklus af batteri %s" msgid "Track execution of chore %s" -msgstr "" +msgstr "Registrer pligt %s" msgid "Filter by location" -msgstr "Filtre med placering" +msgstr "Filtrer efter placering" msgid "Search" msgstr "Søg" @@ -412,7 +414,7 @@ msgid "Not logged in" msgstr "Ikke logget ind" msgid "You have to select a product" -msgstr "Du skal vælge et produkt" +msgstr "Du skal vælge en vare" msgid "You have to select a chore" msgstr "Du skal vælge en pligt" @@ -421,25 +423,25 @@ msgid "You have to select a battery" msgstr "Du skal vælge et batteri" msgid "A name is required" -msgstr "Du skal vælge et navn" +msgstr "Et navn er påkrævet" msgid "A location is required" -msgstr "Du skal vælge en placering" +msgstr "En placering er påkrævet" msgid "The amount cannot be lower than %s" -msgstr "Mængden kan ikek kvære lavere end %s" +msgstr "Mængden kan ikke være lavere end %s" msgid "This cannot be negative" msgstr "Dette kan ikke være negativt" msgid "A quantity unit is required" -msgstr "Du skal vælge en enhed for mængden" +msgstr "Enhed for mængden er påkrævet" msgid "A period type is required" -msgstr "Du skal vælge en slags periode" +msgstr "Periodetype er påkrævet" msgid "A best before date is required" -msgstr "" +msgstr "Bedst før dato er påkrævet" msgid "Settings" msgstr "Indstillinger" @@ -454,19 +456,19 @@ msgid "Recipes" msgstr "Opskrifter" msgid "Edit recipe" -msgstr "Ændr opskrift" +msgstr "Rediger opskrift" msgid "New recipe" msgstr "Ny opskrift" msgid "Ingredients list" -msgstr "Ingrediens liste" +msgstr "Ingrediensliste" msgid "Add recipe ingredient" msgstr "Tilføj ingrediens til opskrift" msgid "Edit recipe ingredient" -msgstr "Ændr ingrediens til opskrift" +msgstr "Rediger ingrediens til opskrift" msgid "Are you sure to delete recipe \"%s\"?" msgstr "Er du sikker på du vil slette opskriften \"%s\"?" @@ -475,16 +477,16 @@ msgid "Are you sure to delete recipe ingredient \"%s\"?" msgstr "Er du sikker på du vil slette ingrediensen \"%s\" fra opskriften?" msgid "Are you sure to empty shopping list \"%s\"?" -msgstr "" +msgstr "Er du sikker på at du vil tømme indkøbslisten \"%s\"?" msgid "Clear list" -msgstr "Ryd liste" +msgstr "Ryd indkøbslisten" msgid "Requirements fulfilled" msgstr "Skal udfyldes" msgid "Put missing products on shopping list" -msgstr "Sæt manglende produkter på en indkøbsliste" +msgstr "Sæt manglende varer på en indkøbsliste" msgid "Enough in stock" msgstr "Der er nok i beholdningen" @@ -494,7 +496,11 @@ msgid "" msgid_plural "" "Not enough in stock, %s ingredients missing but already on the shopping list" msgstr[0] "" +"Ikke nok i beholdningen, %s ingrediens mangler men er allerede på " +"indkøbslisten" msgstr[1] "" +"Ikke nok i beholdningen, %s ingredienser mangler men er allerede på " +"indkøbslisten" msgid "Expand to fullscreen" msgstr "Udvid til fuldskærm" @@ -508,10 +514,8 @@ msgstr "Tilberedning" msgid "Recipe" msgstr "Opskrift" -msgid "Not enough in stock, %s missing, %s already on shopping list" -msgstr "" -"Der er ikke nok i beholdningen. Der mangler %s, %s er allerede i " -"beholdningen" +msgid "Not enough in stock, %1$s missing, %2$s already on shopping list" +msgstr "Ikke nok i beholdningen, %1$s mangler, %2$s allerede på indkøbslisten" msgid "Show notes" msgstr "Vis noter" @@ -530,7 +534,7 @@ msgid "Added for recipe %s" msgstr "Tilføjet til opskriften %s" msgid "Manage users" -msgstr "" +msgstr "Administrer brugere" msgid "User" msgstr "Bruger" @@ -542,483 +546,496 @@ msgid "Are you sure to delete user \"%s\"?" msgstr "Er du sikker på du vil slette brugeren \"%s\"?" msgid "Create user" -msgstr "Lav bruger" +msgstr "Opret bruger" msgid "Edit user" -msgstr "Ændr bruger" +msgstr "Rediger bruger" msgid "First name" -msgstr "" +msgstr "Fornavn" msgid "Last name" -msgstr "" +msgstr "Efternavn" msgid "A username is required" -msgstr "" +msgstr "Brugernavnet er påkrævet" msgid "Confirm password" -msgstr "" +msgstr "Gentag adgangskoden" msgid "Passwords do not match" -msgstr "" +msgstr "Adgangskoderne matcher ikke" msgid "Change password" -msgstr "" +msgstr "Skift adgangskode" msgid "Done by" -msgstr "" +msgstr "Udført af" msgid "Last done by" -msgstr "" +msgstr "Sidst udført af" msgid "Unknown" -msgstr "" +msgstr "Ukendt" msgid "Filter by chore" -msgstr "" +msgstr "Filtrer efter pligt" msgid "Chores journal" -msgstr "" +msgstr "Pligt-logbog" msgid "0 means suggestions for the next charge cycle are disabled" -msgstr "" +msgstr "0 betyder forslag til næste ladecyklus er deaktiveret" msgid "Charge cycle interval (days)" -msgstr "" +msgstr "Ladecyklus interval (dage)" msgid "Last price" -msgstr "" +msgstr "Sidste pris" msgid "Price history" -msgstr "" +msgstr "Prishistorik" msgid "No price history available" -msgstr "" +msgstr "Ingen prishistorik tilgængelig" msgid "Price" -msgstr "" +msgstr "Pris" msgid "in %s per purchase quantity unit" -msgstr "" +msgstr "i %s per købt mængdeenhed" msgid "The price cannot be lower than %s" -msgstr "" +msgstr "Prisen kan ikke være lavere end %s" msgid "Unit" -msgstr "" +msgstr "Enhed" msgid "%s Unit" msgid_plural "%s Units" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s Enhed" +msgstr[1] "%s Enheder " msgid "%s chore is due to be done" msgid_plural "%s chores are due to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s pligt forfalder nu" +msgstr[1] "%s pligter forfalder nu" msgid "%s chore is overdue to be done" msgid_plural "%s chores are overdue to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s pligt er forfalden" +msgstr[1] "%s pligter er forfaldne" msgid "%s battery is due to be charged" msgid_plural "%s batteries are due to be charged" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s batteri skal oplades nu" +msgstr[1] "%s batterier skal oplades" msgid "%s battery is overdue to be charged" msgid_plural "%s batteries are overdue to be charged" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s batteri skulle have været opladet" +msgstr[1] "%s batterier skulle have være opladet" msgid "in singular form" -msgstr "" +msgstr "i ental" msgid "Never expires" -msgstr "" +msgstr "Udløber aldrig" msgid "This cannot be lower than %s" -msgstr "" +msgstr "Dette kan ikke være lavere end %s" msgid "-1 means that this product never expires" -msgstr "" +msgstr "-1 betyder at denne vare aldrig udløber" msgid "Quantity unit" -msgstr "" +msgstr "Mængdeenhed" msgid "" "Only check if a single unit is in stock (a different quantity can then be " "used above)" msgstr "" +"Udfyld kun hvis en enkelt enhed er i beholdningen (en anden mængde kan " +"herved blive brugt ovenfor)" msgid "" "Are you sure to consume all ingredients needed by recipe \"%s\" (ingredients" " marked with \"check only if a single unit is in stock\" will be ignored)?" msgstr "" +"Er du sikker på du vil forbruge alle nødvendige ingredienser i opskrift " +"\"%s\" (ingredienser markeret med \"udfyld kun hvis en enkelt enhed er i " +"beholdningen\" vil blive ignoreret)?" msgid "Removed all ingredients of recipe \"%s\" from stock" -msgstr "" +msgstr "Fjernede alle ingredienser til opskrift \"%s\" fra beholdningen" msgid "Consume all ingredients needed by this recipe" -msgstr "" +msgstr "Forbrug alle nødvendige ingredienser til denne opskrift" msgid "Click to show technical details" -msgstr "" +msgstr "Klik for at vise tekniske detaljer" msgid "Error while saving, probably this item already exists" -msgstr "" +msgstr "Fejl ved lagring, måske eksisterer varen allerede" msgid "Error details" -msgstr "" +msgstr "Detaljer for fejl" msgid "Tasks" -msgstr "" +msgstr "Opgaver" msgid "Show done tasks" -msgstr "" +msgstr "Vis udførte opgaver" msgid "Task" -msgstr "" +msgstr "Opgave" msgid "Due" -msgstr "" +msgstr "Forfald" msgid "Assigned to" -msgstr "" +msgstr "Tildelt" msgid "Mark task \"%s\" as completed" -msgstr "" +msgstr "Marker opgaven \"%s\" som udført" msgid "Uncategorized" -msgstr "" +msgstr "Ikke kategoriseret" msgid "Task categories" -msgstr "" +msgstr "Opgavekategorier" msgid "Create task" -msgstr "" +msgstr "Opret opgave" msgid "A due date is required" -msgstr "" +msgstr "En forfaldsdato er påkrævet" msgid "Category" -msgstr "" +msgstr "Kategori" msgid "Edit task" -msgstr "" +msgstr "Rediger opgave" msgid "Are you sure to delete task \"%s\"?" -msgstr "" +msgstr "Er du sikker på at du vil slette opgaven \"%s\"?" msgid "%s task is due to be done" msgid_plural "%s tasks are due to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s opgaven forfalder nu" +msgstr[1] "%s opgaver forfalder nu" msgid "%s task is overdue to be done" msgid_plural "%s tasks are overdue to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s opgaver er forfaldne" +msgstr[1] "%s opgaver er forfaldne" msgid "Edit task category" -msgstr "" +msgstr "Rediger opgavekategori" msgid "Create task category" -msgstr "" +msgstr "Opret opgavekategori" msgid "Product groups" -msgstr "" +msgstr "Varegrupper" msgid "Ungrouped" -msgstr "" +msgstr "Ikke grupperet" msgid "Create product group" -msgstr "" +msgstr "Opret varegruppe" msgid "Edit product group" -msgstr "" +msgstr "Rediger varegruppe" msgid "Product group" -msgstr "" +msgstr "Varegruppe" msgid "Are you sure to delete product group \"%s\"?" -msgstr "" +msgstr "Er du sikker på at du vil slette varegruppen \"%s\"?" msgid "Stay logged in permanently" -msgstr "" +msgstr "Forbliv logget ind" msgid "When not set, you will get logged out at latest after 30 days" -msgstr "" +msgstr "Hvis ikke markeret, vil du blive logget ud senest efter 30 dage" msgid "Filter by status" -msgstr "" +msgstr "Filtrer efter status" msgid "Below min. stock amount" -msgstr "" +msgstr "Under min. beholdningsantal" msgid "Expiring soon" -msgstr "" +msgstr "Udløber snart" msgid "Already expired" -msgstr "" +msgstr "Allerede udløbet" msgid "Due soon" -msgstr "" +msgstr "Forfalder snart" msgid "Overdue" -msgstr "" +msgstr "Forfalden" msgid "View settings" -msgstr "" +msgstr "Vis indstillinger" msgid "Auto reload on external changes" -msgstr "" +msgstr "Auto genindlæs ved eksterne ændringer" msgid "Enable night mode" -msgstr "" +msgstr "Aktiver nat-tilstand" msgid "Auto enable in time range" -msgstr "" +msgstr "Auto aktivering i tidsintervallet" msgid "From" -msgstr "" +msgstr "Fra" msgid "in format" -msgstr "" +msgstr "i format" msgid "To" -msgstr "" +msgstr "Til" msgid "Time range goes over midnight" -msgstr "" +msgstr "Tidsintervallet går over midnat" msgid "Product picture" -msgstr "" +msgstr "Produktbillede" msgid "No file selected" -msgstr "" +msgstr "Ingen fil valgt" msgid "If you don't select a file, the current picture will not be altered" msgstr "" +"Hvis du ikke vælger en fil, vil det nuværende billede ikke blive ændret" msgid "Delete" -msgstr "" +msgstr "Slet" msgid "The current picture will be deleted when you save the product" -msgstr "" +msgstr "Det nuværende billede vil blive slettet når du gemmer denne vare" msgid "Select file" -msgstr "" +msgstr "Vælg fil" msgid "Image of product %s" -msgstr "" +msgstr "Billede af varen %s" msgid "" "This product cannot be deleted because it is in stock, please remove the " "stock amount first." msgstr "" +"Denne vare kan ikke slettes fordi den er på lager. Fjern venligst " +"lagerbeholdningen først." msgid "Delete not possible" -msgstr "" +msgstr "Ikke muligt at slette" msgid "Equipment" -msgstr "" +msgstr "Udstyr" msgid "Instruction manual" -msgstr "" +msgstr "Instruktionsmanual" msgid "The selected equipment has no instruction manual" -msgstr "" +msgstr "Det valgte udstyr har ingen instruktionsmanual" msgid "Notes" -msgstr "" +msgstr "Noter" msgid "Edit equipment" -msgstr "" +msgstr "Rediger udstyr" msgid "Create equipment" -msgstr "" +msgstr "Opret udstyr" msgid "" "If you don't select a file, the current instruction manual will not be " "altered" msgstr "" +"Hvis du ikke vælger en fil vil den nuværende instruktionsmanual ikke blive " +"ændret" msgid "No instruction manual available" -msgstr "" +msgstr "Ingen instruktionsmanual tilgængelig" msgid "" "The current instruction manual will be deleted when you save the equipment" msgstr "" +"Den nuværende instruktionsmanual vil blive slettet når du gemmer udstyret" msgid "No picture available" -msgstr "" +msgstr "Intet billede tilgængeligt" msgid "Filter by product group" -msgstr "" +msgstr "Filtrer efter varegruppe" msgid "Presets for new products" -msgstr "" +msgstr "Forudindstillinger for nye varer" msgid "Included recipes" -msgstr "" +msgstr "Inkluderede opskrifter" msgid "A recipe is required" -msgstr "" +msgstr "En opskrift er påkrævet" msgid "Add included recipe" -msgstr "" +msgstr "Opret inkluderet opskrift" msgid "Edit included recipe" -msgstr "" +msgstr "Rediger inkluderet opskrift" msgid "Group" -msgstr "" +msgstr "Gruppe" msgid "This will be used as a headline to group ingredients together" -msgstr "" +msgstr "Dette vil blive brugt som overskrift til at gruppere ingredienser" msgid "Journal" -msgstr "" +msgstr "Logbog" msgid "Stock journal" -msgstr "" +msgstr "Lager-logbog" msgid "Filter by product" -msgstr "" +msgstr "Filtrer efter vare" msgid "Booking time" -msgstr "" +msgstr "Logningstidspunkt" msgid "Booking type" -msgstr "" +msgstr "Logningstype" msgid "Undo booking" -msgstr "" +msgstr "Fortryd logning" msgid "Undone on" -msgstr "" +msgstr "Fortrudt den" msgid "Batteries journal" -msgstr "" +msgstr "Batteri-logbog" msgid "Filter by battery" -msgstr "" +msgstr "Filtrer efter batteri" msgid "Undo charge cycle" -msgstr "" +msgstr "Fortryd ladecyklus" msgid "Undo chore execution" -msgstr "" +msgstr "Fortryd udførsel af pligt" msgid "Chore execution successfully undone" -msgstr "" +msgstr "Pligtudførsel blev fortrudt" msgid "Undo" -msgstr "" +msgstr "Fortryd" msgid "Booking successfully undone" -msgstr "" +msgstr "Logning blev fortrudt" msgid "Charge cycle successfully undone" -msgstr "" +msgstr "Ladecyklus blev fortrudt" msgid "This cannot be negative and must be an integral number" -msgstr "" +msgstr "Dette kan ikke være negativt og skal være et heltal" msgid "Disable stock fulfillment checking for this ingredient" -msgstr "" +msgstr "Deaktiver opfyldningstjek i beholdningen for denne ingrediens" msgid "Add all list items to stock" -msgstr "" +msgstr "Tilføj alle viste varer til lagerbeholdningen" -msgid "Add %s %s of %s to stock" -msgstr "" +msgid "Add %1$s of %2$s to stock" +msgstr "Tilføj %1$s af %2$s til beholdningen" -msgid "Adding shopping list item %s of %s" -msgstr "" +msgid "Adding shopping list item %1$s of %2$s" +msgstr "Tilføjer indkøbsliste-punkt %1$s af %2$s" msgid "Use a specific stock item" -msgstr "" +msgstr "Brug en bestemt lagervare" msgid "" "The first item in this list would be picked by the default rule which is " "\"First expiring first, then first in first out\"" msgstr "" +"Den første vare på denne liste bliver valgt af standardreglen som er \"Først" +" udløbende først, så først ind, først ud\"" -msgid "Mark %s of %s as open" -msgstr "" +msgid "Mark %1$s of %2$s as open" +msgstr "Marker %1$s %2$s som åben" msgid "" -"When a product was marked as opened, the best before date will be replaced " -"by today + this amount of days (a value of 0 disables this)" +"When this product was marked as opened, the best before date will be " +"replaced by today + this amount of days (a value of 0 disables this)" msgstr "" msgid "Default best before days after opened" -msgstr "" +msgstr "Standard bedst før dage efter åbnet" -msgid "Marked %s %s of %s as opened" -msgstr "" +msgid "Marked %1$s of %2$s as opened" +msgstr "Markerede %1$s %2$s som åbnet" msgid "Mark as opened" -msgstr "" - -msgid "Expires on %s; Bought on %s" -msgstr "" +msgstr "Marker som åbnet" msgid "Not opened" -msgstr "" +msgstr "Ikke åbnet" msgid "Opened" -msgstr "" +msgstr "Åbnet" msgid "%s opened" -msgstr "" +msgstr "%s åbnet" msgid "Product expires" -msgstr "" +msgstr "Varen udløber" msgid "Task due" -msgstr "" +msgstr "Opgave forfalder" msgid "Chore due" -msgstr "" +msgstr "Pligt forfalder" msgid "Battery charge cycle due" -msgstr "" +msgstr "Batteri ladecyklus forfalder" msgid "Show clock in header" -msgstr "" +msgstr "Vis ur i headeren" msgid "Stock settings" -msgstr "" +msgstr "Beholdningsindstillinger" msgid "Shopping list to stock workflow" -msgstr "" +msgstr "Indkøbsliste til lagerworkflow" msgid "" "Automatically do the booking using the last price and the amount of the " "shopping list item, if the product has \"Default best before days\" set" msgstr "" +"Automatik book ved hjælp af den sidste pris og antallet af " +"indkøbslisteprodukt, hvis produktet har \"Standard bedst før dage\" markeret" msgid "Skip" -msgstr "" +msgstr "Skip" msgid "Servings" -msgstr "" +msgstr "Portioner" msgid "Costs" -msgstr "" +msgstr "Omkostninger" msgid "Based on the prices of the last purchase per product" -msgstr "" +msgstr "Baseret på prisen af sidste køb per produkt" msgid "The ingredients listed here result in this amount of servings" -msgstr "" +msgstr "Ingredienslisten vist her resulterer i følgende antal portioner" msgid "Do not check against the shopping list when adding missing items to it" msgstr "" +"Tjek ikke op imod indkøbslisten når der tilføjes manglende produkter til den" msgid "" "By default the amount to be added to the shopping list is \"needed amount - " @@ -1026,227 +1043,839 @@ msgid "" "checked against the stock amount, not against what is already on the " "shopping list" msgstr "" +"Som standard er antallet der bliver tilføjet indkøbslisten \"nødvendigt " +"antal - lagerbeholdning - indkøbslisteantal\" - når dette er aktiveret " +"bliver det kun tjekket op imod lagerbeholdningen, ikke op imod hvad der " +"allerede er på indkøbslisten" msgid "Picture" -msgstr "" +msgstr "Billede" msgid "Uncheck ingredients to not put them on the shopping list" -msgstr "" +msgstr "Fjern markeringen fra ingredienser der ikke skal på indkøbslisten" msgid "This is for statistical purposes only" -msgstr "" +msgstr "Dette er kun til brug for statistiske udregninger" msgid "You have to select a recipe" -msgstr "" +msgstr "Du skal vælge en opskrift" msgid "Key type" -msgstr "" +msgstr "Nøgletype" msgid "Share/Integrate calendar (iCal)" -msgstr "" +msgstr "Del/Integrer kalender (iCal)" msgid "" "Use the following (public) URL to share or integrate the calendar in iCal " "format" msgstr "" +"Brug følgende (offentlige) URL til at dele eller integrere kalenderen i " +"iCal-format" msgid "Allow partial units in stock" -msgstr "" +msgstr "Tillad kun delvise enheder i beholdningen" msgid "Enable tare weight handling" -msgstr "" +msgstr "Aktiver emballagevægthåndtering" msgid "" "This is useful e.g. for flour in jars - on purchase/consume/inventory you " "always weigh the whole jar, the amount to be posted is then automatically " "calculated based on what is in stock and the tare weight defined below" msgstr "" +"Dette er brugbart for f.eks. mel i glas - ved køb/forbrug/statusoptælling " +"kan du altid veje hele glasset. Mængden der bliver vist, bliver automatisk " +"udregnet ud fra hvad der er på lager og hvad emballagens vægt, der er " +"defineret nedenfor, er" msgid "Tare weight" -msgstr "" +msgstr "Emballagevægt" msgid "" "Tare weight handling enabled - please weigh the whole container, the amount " "to be posted will be automatically calculcated" msgstr "" +"Emballagevægthåndtering aktiveret - venligst vej hele beholderen/emballagen," +" mængden der bliver vist vil automatisk blive udregnet" msgid "You have to select a location" -msgstr "" +msgstr "Du skal vælge en placering" msgid "List" -msgstr "" +msgstr "Liste" msgid "Gallery" -msgstr "" +msgstr "Galleri" msgid "The current picture will be deleted when you save the recipe" -msgstr "" +msgstr "Det nuværende billede vil blive slettet når du gemmer opskriften" msgid "Show product details" -msgstr "" +msgstr "Vis produktdetaljer" msgid "Stock journal for this product" -msgstr "" +msgstr "Lager-logbog for denne vare" msgid "Show chore details" -msgstr "" +msgstr "Vis pligtdetajler" msgid "Journal for this chore" -msgstr "" +msgstr "Logbog for denne pligt" msgid "Show battery details" -msgstr "" +msgstr "Vis batteridetaljer" msgid "Journal for this battery" -msgstr "" +msgstr "Logbog for dette batteri" msgid "System info" -msgstr "" +msgstr "Systeminformation" msgid "Changelog" -msgstr "" +msgstr "Ændringslog" -msgid "will be multiplied a factor of %s to get %s" -msgstr "" +msgid "will be multiplied a factor of %1$s to get %2$s" +msgstr "vil blive ganget med en faktor af %1$s for at få %2$s" msgid "The given date is earlier than today, are you sure?" -msgstr "" +msgstr "Den angivne dato er før i dag, er du sikker?" msgid "Product count" -msgstr "" +msgstr "Antal varer" msgid "Type a new product name or barcode and hit TAB to start a workflow" msgstr "" +"Skriv et nyt produktnavn eller stregkode og tryk TAB for at starte et " +"workflow" msgid "" "This will be used as the default setting when adding this product as a " "recipe ingredient" msgstr "" +"Dette vil blive brugt som standardindstillinger når dette produkt tilføjes " +"som ingredient til en opskrift" msgid "Add item" -msgstr "" +msgstr "Tilføj produkt" msgid "Selected shopping list" -msgstr "" +msgstr "Valgte indkøbsliste" msgid "New shopping list" -msgstr "" +msgstr "Ny indkøbsliste" msgid "Delete shopping list" -msgstr "" +msgstr "Slet indkøbsliste" msgid "Chores settings" -msgstr "" +msgstr "Pligt-indstillinger" msgid "Batteries settings" -msgstr "" +msgstr "Batteri-indstillinger" msgid "Tasks settings" -msgstr "" +msgstr "Opgave-indstillinger" msgid "Create shopping list" -msgstr "" +msgstr "Opret indkøbsliste" msgid "Are you sure to delete shopping list \"%s\"?" -msgstr "" +msgstr "Er du sikker på at du vil slette indkøbslisten \"%s\"?" msgid "Average shelf life" -msgstr "" +msgstr "Gennemsnitlig holdbarhed" msgid "Spoil rate" -msgstr "" +msgstr "Fordærvelseshastighed" msgid "Show more" -msgstr "" +msgstr "Vis mere" msgid "Show less" -msgstr "" +msgstr "Vis mindre" -msgid "The amount must be between %s and %s" -msgstr "" +msgid "The amount must be between %1$s and %2$s" +msgstr "Antallet skal være imellem %1$s og %2$s" msgid "Day of month" -msgstr "" +msgstr "Dag i måneden" msgid "Monday" -msgstr "" +msgstr "Mandag" msgid "Tuesday" -msgstr "" +msgstr "Tirsdag" msgid "Wednesday" -msgstr "" +msgstr "Onsdag" msgid "Thursday" -msgstr "" +msgstr "Torsdag" msgid "Friday" -msgstr "" +msgstr "Fredag" msgid "Saturday" -msgstr "" +msgstr "Lørdag" msgid "Sunday" -msgstr "" +msgstr "Søndag" msgid "Configure userfields" -msgstr "" +msgstr "Konfigurer brugerfelter" msgid "Userfields" -msgstr "" +msgstr "Brugerfelter" msgid "Filter by entity" -msgstr "" +msgstr "Filtrer efter enhed" msgid "Entity" -msgstr "" +msgstr "Enhed" msgid "Caption" -msgstr "" +msgstr "Billedetekst" msgid "Type" -msgstr "" +msgstr "Type" msgid "Create userfield" -msgstr "" +msgstr "Opret brugerfelt" msgid "A entity is required" -msgstr "" +msgstr "Der kræves en enhed" msgid "A caption is required" -msgstr "" +msgstr "En billedetekst er påkrævet" msgid "A type is required" -msgstr "" +msgstr "En type er påkrævet" msgid "Show as column in tables" -msgstr "" +msgstr "Vist som kolonne i tabeller" msgid "This is required and can only contain letters and numbers" -msgstr "" +msgstr "Dette er påkrævet og kan kun indeholde bogstaver og numre" msgid "Edit userfield" -msgstr "" +msgstr "Rediger brugerfelt" msgid "Plural forms" -msgstr "" +msgstr "Flertalsformer" msgid "One plural form per line, the current language requires" -msgstr "" +msgstr "En flertalsform per linje, det nuværende sprog er påkrævet" msgid "Plural count" -msgstr "" +msgstr "Flertalsantal" msgid "Plural rule" -msgstr "" +msgstr "Flertalsregel" msgid "in plural form" -msgstr "" +msgstr "i flertal" msgid "Not enough in stock, %s ingredient missing" msgid_plural "Not enough in stock, %s ingredients missing" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Ikke nok i beholdningen, %s ingrediens mangler" +msgstr[1] "Ikke nok i beholdningen, %s ingredienser mangler" -msgid "Consume %s of %s" +msgid "The amount cannot be lower than %1$s or equal %2$s" +msgstr "Antallet kan ikke være lavere end %1$s eller lig med %2$s" + +msgid "Not enough in stock, but already on the shopping list" +msgstr "Ikke nok på lager, men allerede på indkøbslisten" + +msgid "Not enough in stock" +msgstr "Ikke nok på lager" + +msgid "Expiring soon days" +msgstr "Udløber snart - antal dage" + +msgid "Default location" +msgstr "Standardplacering" + +msgid "Default amount for purchase" +msgstr "Standardantal for køb" + +msgid "Default amount for consume" +msgstr "Standardantal for forbrug" + +msgid "Variable amount" +msgstr "Variabelt antal" + +msgid "" +"When this is not empty, it will be shown instead of the amount entered above" +" while the amount there will still be used for stock fulfillment checking" +msgstr "" +"Når denne ikke er tom, vil den blive vist istedet for antallet skrevet " +"ovenfor, dog vil antallet dér stadig blive brugt til opfyldningstjek af " +"beholdning" + +msgid "Track date only" +msgstr "Registrer kun dato" + +msgid "When enabled only the day of an execution is tracked, not the time" +msgstr "" +"Når aktiveret vil kun dagen for udførsel blive registreret, ikke tidspunktet" + +msgid "Consume %1$s of %2$s" +msgstr "Forbrug %1$s af %2$s" + +msgid "Meal plan" +msgstr "Måltidsplan" + +msgid "Add recipe to %s" +msgstr "Tilføj opskrift til %s" + +msgid "%s serving" +msgid_plural "%s servings" +msgstr[0] "%s portion" +msgstr[1] "%s portioner" + +msgid "Week costs" +msgstr "Ugentlige omkostninger" + +msgid "Configuration" +msgstr "Konfiguration" + +msgid "A predefined list of values, one per line" +msgstr "En prædefineret liste af værdier, en per linje" + +msgid "Chores due soon days" +msgstr "Pligter der forfalder snart - antal dage" + +msgid "Batteries due to be charged soon days" +msgstr "Batterier der skal oplades snart - antal dage" + +msgid "Tasks due soon days" +msgstr "Opgaver der snart skal udføres - antal dage" + +msgid "Products" +msgstr "Varer" + +msgid "Marked task %s as completed on %s" +msgstr "Markeret opgave %s som udført på %s" + +msgid "Booking has subsequent dependent bookings, undo not possible" +msgstr "Logningen har senere afhængige logninger. Fortryd er ikke muligt" + +msgid "per serving" +msgstr "per portion" + +msgid "Never" +msgstr "Aldrig" + +msgid "Today" +msgstr "Idag" + +msgid "Consume %1$s of %2$s as spoiled" +msgstr "Forbrug %1$s af %2$s som har overskredet holdbarhedsdatoen" + +msgid "Not all ingredients of recipe \"%s\" are in stock, nothing removed" +msgstr "" +"Ikke alle ingredienser til opskrift \"%s\" er i beholdningen, intet fjernet" + +msgid "Undo task \"%s\"" +msgstr "Fortryd opgave \"%s\"" + +msgid "Due date rollover" +msgstr "Forfaldsdato for omlægning" + +msgid "" +"When enabled the chore can never be overdue, the due date will shift forward" +" each day when due" +msgstr "" +"Når aktiveret kan pligten aldrig være efter forfaldsdatoen, forfaldsdatoen " +"rykkes frem hver dag pligten forfalder og ikke udføres" + +msgid "Location Content Sheet" +msgstr "Placeringsindholdsark" + +msgid "Print" +msgstr "Udskriv" + +msgid "all locations" +msgstr "Alle placeringer" + +msgid "" +"Here you can print a page per location with the current stock, maybe to hang" +" it there and note the consumed things on it." +msgstr "" +"Her kan du printe en side per beliggenhed med nuværende beholdning, for " +"eksempel til at hænge op og notere forbrug af ting på denne." + +msgid "this location" +msgstr "denne placering" + +msgid "Consumend amount" +msgstr "Brugt antal" + +msgid "Time of printing" +msgstr "Tidspunkt for udskrift" + +msgid "Are you sure to delete equipment \"%s\"?" +msgstr "Er du sikker på du vil slette udstyret \"%s\"?" + +msgid "Parent product" +msgstr "Overordnet vare" + +msgid "" +"Not possible because this product is already used as a parent product in " +"another product" +msgstr "" +"Ikke muligt fordi denne vare allerede er brugt som overordnet vare for en " +"anden vare" + +msgid "Default conversions" +msgstr "Standardkonverteringer" + +msgid "Factor" +msgstr "Faktor" + +msgid "1 %s is the same as..." +msgstr "%s er det samme som..." + +msgid "Create QU conversion" +msgstr "Opret mængdeenhedskonvertering" + +msgid "Default for QU" +msgstr "Standard for mængdeenhed" + +msgid "Quantity unit from" +msgstr "Mængdeenhed fra" + +msgid "Quantity unit to" +msgstr "Mængdeenhed til" + +msgid "" +"This cannot be lower than %1$s and must be a valid number with max. %2$s " +"decimal places" +msgstr "" +"Dette kan ikke være lavere end %1$s og skal være et gyldigt nummer med maks " +"%2$sdecimaler" + +msgid "This cannot be equal to %s" +msgstr "Dette kan ikke være lig med %s" + +msgid "This means 1 %1$s is the same as %2$s %3$s" +msgstr "Dette betyder at 1 %1$s er det samme som %2$s %3$s" + +msgid "QU conversions" +msgstr "Mængdeenhedskonverteringer" + +msgid "Product overrides" +msgstr "Vareoverstyringer" + +msgid "Override for product" +msgstr "Overstyring for vare" + +msgid "This equals %1$s %2$s in stock" +msgstr "Dette tilsvarer %1$s %2$s i beholdningen" + +msgid "Edit QU conversion" +msgstr "Rediger mængdeenhedskonvertering" + +msgid "An assignment type is required" +msgstr "En opgavetype er påkrævet" + +msgid "Assignment type" +msgstr "Opgavetype" + +msgid "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution" +msgstr "" +"Det betyder at den næste udførelse af denne pligt er planlagt 1 dag efter " +"sidste udførelse" + +msgid "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution, but only for the weekdays selected below" +msgstr "" +"Det betyder at den næste udførelse af denne pligt er planlagt 1 dag efter " +"sidste udførelse, men kun på de dage der er valgt herunder" + +msgid "This means the next execution of this chore is not scheduled" +msgstr "Det betyder at næste udførelse af denne pligt ikke er planlagt" + +msgid "" +"This means the next execution of this chore is scheduled on the below " +"selected day of each month" +msgstr "" +"Det betyder at næste udførelse af denne pligt er planlagt på den nedenfor " +"valgte dag i hver måned" + +msgid "" +"This means the next execution of this chore will not be assigned to anyone" +msgstr "" +"Det betyder at den næste udførelse af denne pligt ikke vil blive tildelt til" +" nogen" + +msgid "" +"This means the next execution of this chore will be assigned to the one who " +"executed it least" +msgstr "" +"Det betyder at næste udførelse af denne pligt vil blive tildelt til den som " +"har udført den mindst" + +msgid "This means the next execution of this chore will be assigned randomly" +msgstr "" +"Det betyder at den næste udførelse af denne pligt vil blive tildelt " +"tilfældigt" + +msgid "" +"This means the next execution of this chore will be assigned to the next one" +" in alphabetical order" +msgstr "" +"Det betyder at den næste udførelse af denne pligt vil blive tildelt til den " +"næste i alfabetisk rækkefølge" + +msgid "Assign to" +msgstr "Tildel til" + +msgid "This assignment type requires that at least one is assigned" +msgstr "Denne opgavetype kræver, at der tildeles mindst en" + +msgid "%s chore is assigned to me" +msgid_plural "%s chores are assigned to me" +msgstr[0] "%spligt er tildelt til mig" +msgstr[1] "%spligter er tildelt til mig" + +msgid "Assigned to me" +msgstr "Tildelt til mig" + +msgid "assigned to %s" +msgstr "tildelt til %s" + +msgid "Filter by assignment" +msgstr "Filtrer efter tildeling" + +msgid "Consume product on chore execution" +msgstr "Forbrug vare ved udførsel af pligt" + +msgid "Are you sure to delete user field \"%s\"?" +msgstr "Er du sikker på at du vil slette brugerfeltet \"%s\"?" + +msgid "Userentities" +msgstr "Brugerenheder" + +msgid "Create userentity" +msgstr "Opret brugerenhed" + +msgid "Show in sidebar menu" +msgstr "Vis i side-menu" + +msgid "Edit userentity" +msgstr "Rediger brugerenhed" + +msgid "Edit %s" +msgstr "Rediger %s" + +msgid "Create %s" +msgstr "Opret %s" + +msgid "Are you sure to delete this userobject?" +msgstr "Er du sikker på at du vil slette denne brugerenhed?" + +msgid "Icon CSS class" +msgstr "Ikon CSS-klasse" + +msgid "For example" +msgstr "For eksempel" + +msgid "Configure fields" +msgstr "Konfigurer felter" + +msgid "Quantity unit plural form testing" +msgstr "Mængdeenhed flertalsform test" + +msgid "Result" +msgstr "Resultat" + +msgid "Test plural forms" +msgstr "Test flertalsform" + +msgid "Scan a barcode" +msgstr "Skan en stregkode" + +msgid "Error while initializing the barcode scanning library" +msgstr "Fejl ved initialisering af stregkodeskannerbibliotek" + +msgid "" +"The resulting price of this ingredient will be multiplied by this factor" +msgstr "Prisen for denne ingrediens vil blive ganget med denne faktor" + +msgid "Price factor" +msgstr "Prisfaktor" + +msgid "Do you find grocy useful?" +msgstr "Er grocy brugbart?" + +msgid "Say thanks" +msgstr "Sig tak" + +msgid "Search for recipes containing this product" +msgstr "Søg efter opskrifter som indeholder denne vare" + +msgid "Add to shopping list" +msgstr "Tilføj til indkøbsliste" + +msgid "Added %1$s of %2$s to the shopping list \"%3$s\"" +msgstr "Tilføjet %1$s af %2$s til indkøbslisten \"%3$s\"" + +msgid "Output" +msgstr "Output" + +msgid "Energy (kcal)" +msgstr "Energi (kcal)" + +msgid "Per stock quantity unit" +msgstr "Per lager-mængdeenhed" + +msgid "Barcode scanner testing" +msgstr "Stregkodeskannertest" + +msgid "Expected barcode" +msgstr "Forventet stregkode" + +msgid "Scan field" +msgstr "Skannerfelt" + +msgid "Scanned barcodes" +msgstr "Skannede stregkoder" + +msgid "Hit" +msgstr "Hit" + +msgid "Miss" +msgstr "Miss" + +msgid "Display recipe" +msgstr "Vis opskrift" + +msgid "Accumulate sub products min. stock amount" +msgstr "Akkumuler underordnede varers minimumbeholdning" + +msgid "" +"If enabled, the min. stock amount of sub products will be accumulated into " +"this product, means the sub product will never be \"missing\", only this " +"product" +msgstr "" +"Hvis aktiveret bliver minimumsbeholdning for underordnede varer akkumuleret " +"ind i denne vare så det kun er denne vare der \"mangler\" og ikke de " +"underordnede" + +msgid "Are you sure to remove this conversion?" +msgstr "Er du sikker på at du vil fjerne denne konvertering" + +msgid "Unit price" +msgstr "Enhedspris" + +msgid "Total price" +msgstr "Totalpris" + +msgid "in %s and based on the purchase quantity unit" +msgstr "i %s og baseret på købets mængdeenhed" + +msgid "Unlimited" +msgstr "Ubegrænset" + +msgid "Clear" +msgstr "Ryd" + +msgid "Are you sure to remove the included recipe \"%s\"?" +msgstr "Er du sikker på du vil fjerne den inkluderede opskrift \"%s\"?" + +msgid "Period interval" +msgstr "Periodeinterval" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s days" +msgstr "" +"Det betyder at den næste udførelse af denne pligt kun bør planlægges hver %s" +" dage" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s weeks" +msgstr "" +"Det betyder at den næste udførelse af denne pligt kun bør planlægges hver %s" +" uger" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s months" +msgstr "" +"Det betyder at den næste udførsel af denne pligt kun bør planlægges hver %s " +"måneder" + +msgid "" +"This means the next execution of this chore is scheduled 1 year after the " +"last execution" +msgstr "" +"Det betyder at næste udførsel af denne pligt er planlagt 1 år efter sidste " +"udførsel" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s years" +msgstr "" +"Det betyder at næste udførsel af denne pligt kun bør planlægges hver %s år" + +msgid "Transfer" +msgstr "Flyt" + +msgid "From location" +msgstr "Fra placering" + +msgid "To location" +msgstr "Til placering" + +msgid "There are no units available at this location" +msgstr "Der er ingen enheder tilgængelig på denne placering" + +msgid "Amount: %1$s; Expires on %2$s; Bought on %3$s" +msgstr "Mængde: %1$s; Udløber d. %2$s; Købt d. %3$s" + +msgid "Transfered %1$s of %2$s from %3$s to %4$s" +msgstr "Flyttede %1$s af %2$s fra %3$s til %4$s" + +msgid "Show stock entries" +msgstr "Vis lagerposteringer" + +msgid "Stock entries" +msgstr "Lagerposteringer" + +msgid "Best before date" +msgstr "Bedst før dato" + +msgid "Purchased date" +msgstr "Købsdato" + +msgid "Consume all %s for this stock entry" +msgstr "Forbrug alle %s i denne lagerpostering" + +msgid "The amount cannot be lower than %1$s" +msgstr "Mængden kan ikke være lavere end %1$s" + +msgid "Stock entry successfully updated" +msgstr "Lagerpostering opdateret" + +msgid "Edit stock entry" +msgstr "Rediger lagerpostering" + +msgid "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" +msgstr "" + +msgid "Keep screen on" +msgstr "" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "" + +msgid "A purchased date is required" +msgstr "" + +msgid "" +"When a product is selected, one unit (per serving in purchase quantity unit)" +" will be added to stock on consuming this recipe" +msgstr "" + +msgid "Produces product" +msgstr "" + +msgid "This booking cannot be undone" +msgstr "" + +msgid "Booking does not exist or was already undone" +msgstr "" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "" + +msgid "Add note" +msgstr "" + +msgid "Add note to %s" +msgstr "" + +msgid "per day" +msgstr "" + +msgid "Compact view" +msgstr "" + +msgid "Normal view" +msgstr "" + +msgid "Only undone items" +msgstr "" + +msgid "Add product" +msgstr "" + +msgid "Add product to %s" +msgstr "" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" + +msgid "Meal plan recipe" +msgstr "" + +msgid "Meal plan note" +msgstr "" + +msgid "Meal plan product" +msgstr "" + +msgid "Scan mode" +msgstr "" + +msgid "on" +msgstr "" + +msgid "off" +msgstr "" + +msgid "" +"Scan mode is on but not all required fields could be populated automatically" +msgstr "" + +msgid "Is freezer" +msgstr "" + +msgid "" +"When moving products from/to a freezer location, the products best before " +"date is automatically adjusted according to the product settings" +msgstr "" + +msgid "" +"On moving this product to a freezer location (so when freezing it), the best" +" before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after freezing" +msgstr "" + +msgid "" +"On moving this product from a freezer location (so when thawing it), the " +"best before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after thawing" +msgstr "" + +msgid "This cannot be the same as the \"From\" location" +msgstr "" + +msgid "Thawed" +msgstr "" + +msgid "Frozen" msgstr "" diff --git a/localization/da/userfield_types.po b/localization/da/userfield_types.po index e3984ffd..c2670c2d 100644 --- a/localization/da/userfield_types.po +++ b/localization/da/userfield_types.po @@ -1,3 +1,5 @@ +# Translators: +# Brian Moos Lindberg , 2019 # msgid "" msgstr "" @@ -5,6 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:43+0000\n" +"Last-Translator: Brian Moos Lindberg , 2019\n" "Language-Team: Danish (https://www.transifex.com/grocy/teams/93189/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,22 +17,31 @@ msgstr "" "X-Domain: grocy/userfield_types\n" msgid "text-single-line" -msgstr "" +msgstr "tekst-enkelt-linje" msgid "text-multi-line" -msgstr "" +msgstr "tekst-flere-linjer" msgid "number-integral" -msgstr "" +msgstr "tal-heltal" msgid "number-decimal" -msgstr "" +msgstr "tal-decimal" msgid "date" -msgstr "" +msgstr "dato" msgid "datetime" -msgstr "" +msgstr "datotid" msgid "checkbox" -msgstr "" +msgstr "afkrydsningsfelt" + +msgid "preset-list" +msgstr "forudindstillet-liste" + +msgid "preset-checklist" +msgstr "forudindstillet-tjekliste" + +msgid "link" +msgstr "link" diff --git a/localization/de/demo_data.po b/localization/de/demo_data.po index dd2f0b0f..88f92743 100644 --- a/localization/de/demo_data.po +++ b/localization/de/demo_data.po @@ -1,5 +1,5 @@ # Translators: -# Bernd Bestel , 2019 +# Bernd Bestel , 2020 # msgid "" msgstr "" @@ -7,7 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Bernd Bestel , 2019\n" +"Last-Translator: Bernd Bestel , 2020\n" "Language-Team: German (https://www.transifex.com/grocy/teams/93189/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -328,3 +328,18 @@ msgstr "aktuelles Release" msgid "not yet released" msgstr "noch nicht freigegeben" + +msgid "Portuguese (Brazil)" +msgstr "Portugiesisch (Brasilien)" + +msgid "This is a note" +msgstr "Dies ist eine Notiz" + +msgid "Freezer" +msgstr "Gefrierschrank" + +msgid "Hungarian" +msgstr "Ungarisch" + +msgid "Slovak" +msgstr "Slowakisch" diff --git a/localization/de/stock_transaction_types.po b/localization/de/stock_transaction_types.po index d4af0965..66364374 100644 --- a/localization/de/stock_transaction_types.po +++ b/localization/de/stock_transaction_types.po @@ -1,5 +1,5 @@ # Translators: -# Bernd Bestel , 2019 +# Bernd Bestel , 2020 # msgid "" msgstr "" @@ -7,7 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Bernd Bestel , 2019\n" +"Last-Translator: Bernd Bestel , 2020\n" "Language-Team: German (https://www.transifex.com/grocy/teams/93189/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,12 @@ msgstr "" msgid "purchase" msgstr "Einkauf" +msgid "transfer_from" +msgstr "Umlagerung von" + +msgid "transfer_to" +msgstr "Umlagerung nach" + msgid "consume" msgstr "Verbrauch" @@ -27,3 +33,12 @@ msgstr "Inventur-Korrektur" msgid "product-opened" msgstr "Produkt geöffnet" + +msgid "stock-edit-old" +msgstr "Bestandseintrag bearbeitet (alte Werte)" + +msgid "stock-edit-new" +msgstr "Bestandseintrag bearbeitet (neue Werte)" + +msgid "self-production" +msgstr "Eigenproduktion" diff --git a/localization/de/strings.po b/localization/de/strings.po index d1236289..a81e33a6 100644 --- a/localization/de/strings.po +++ b/localization/de/strings.po @@ -1,5 +1,6 @@ # Translators: -# Bernd Bestel , 2019 +# H T , 2020 +# Bernd Bestel , 2020 # msgid "" msgstr "" @@ -7,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Bernd Bestel , 2019\n" +"Last-Translator: Bernd Bestel , 2020\n" "Language-Team: German (https://www.transifex.com/grocy/teams/93189/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -676,7 +677,7 @@ msgstr "" msgid "Consume all ingredients needed by this recipe" msgstr "" "Alle Zutaten, die von diesem Rezept benötigt werden, aus dem Bestand " -"enternen" +"entfernen" msgid "Click to show technical details" msgstr "Klick um technische Details anzuzeigen" @@ -975,12 +976,12 @@ msgid "Mark %1$s of %2$s as open" msgstr "%1$s %2$s als geöffnet markieren" msgid "" -"When a product was marked as opened, the best before date will be replaced " -"by today + this amount of days (a value of 0 disables this)" +"When this product was marked as opened, the best before date will be " +"replaced by today + this amount of days (a value of 0 disables this)" msgstr "" -"Wenn ein Produkt als geöffnet markiert wurde, wird das " +"Wenn dieses Produkt als geöffnet markiert wurde, wird das " "Mindesthaltbarkeitsdatum durch heute + diese Anzahl von Tagen ersetzt (ein " -"Wert von 0 deaktiviert dies)" +"Wert von 0 deaktiviert dies) " msgid "Default best before days after opened" msgstr "Standard Haltbarkeit in Tagen nach dem Öffnen" @@ -991,9 +992,6 @@ msgstr "%1$s %2$s als geöffnet markiert" msgid "Mark as opened" msgstr "Als geöffnet markieren" -msgid "Expires on %1$s; Bought on %2$s" -msgstr "Läuft ab am %1$s; Gekauft am %2$s" - msgid "Not opened" msgstr "Nicht geöffnet" @@ -1309,6 +1307,9 @@ msgstr "Nicht ausreichend im Bestand" msgid "Expiring soon days" msgstr "\"Bald ablaufend\"-Tage" +msgid "Default location" +msgstr "Standard Standort" + msgid "Default amount for purchase" msgstr "Standardmenge für Einkauf" @@ -1745,3 +1746,178 @@ msgid "" msgstr "" "Das bedeutet, dass eine erneute Ausführung der Hausarbeit nur alle %s Jahre " "geplant wird" + +msgid "Transfer" +msgstr "Umlagern" + +msgid "From location" +msgstr "Von Standort" + +msgid "To location" +msgstr "Nach Standort" + +msgid "There are no units available at this location" +msgstr "Keine Einheiten an diesem Standort verfügbar" + +msgid "Amount: %1$s; Expires on %2$s; Bought on %3$s" +msgstr "Menge: %1$s; Läuft ab am %2$s; Gekauft am %3$s " + +msgid "Transfered %1$s of %2$s from %3$s to %4$s" +msgstr "%1$s %2$s von %3$s nach %4$s verschoben" + +msgid "Show stock entries" +msgstr "Bestandseinträge anzeigen" + +msgid "Stock entries" +msgstr "Bestandseinträge" + +msgid "Best before date" +msgstr "MHD" + +msgid "Purchased date" +msgstr "Einkaufsdatum" + +msgid "Consume all %s for this stock entry" +msgstr "Verbrauche alle %s dieses Bestandseintrags" + +msgid "The amount cannot be lower than %1$s" +msgstr "Die Menge darf nicht kleiner als %1$s sein" + +msgid "Stock entry successfully updated" +msgstr "Bestandseintrag wurde erfolgreich aktualisiert" + +msgid "Edit stock entry" +msgstr "Bestandseintrag bearbeiten" + +msgid "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" +msgstr "" +"Der Kamerazugriff ist nur möglich, wenn dein Browser dies unterstützt und " +"zulässt und wenn auf grocy über eine sichere Verbindung (https://) " +"zugegriffen wird" + +msgid "Keep screen on" +msgstr "Bildschirm eingeschaltet lassen" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "" +"Bildschirm eingeschaltet lassen während eine \"fullscreen-card\" angezeigt " +"wird" + +msgid "A purchased date is required" +msgstr "Ein Einkaufsdatum ist erforderlich" + +msgid "" +"When a product is selected, one unit (per serving in purchase quantity unit)" +" will be added to stock on consuming this recipe" +msgstr "" +"Wenn ein Produkt ausgewählt ist, wird beim Verbrauch dieses Rezeptes eine " +"Einheit (pro Portion in Einkaufsmengeneinheit) dem Bestand hinzugefügt" + +msgid "Produces product" +msgstr "Produziertes Produkt" + +msgid "This booking cannot be undone" +msgstr "Die Buchung kann nicht rückgängig gemacht werden" + +msgid "Booking does not exist or was already undone" +msgstr "Buchung existiert nicht oder wurde bereits rückgängig gemacht" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "API key \"%s\" wirklich löschen?" + +msgid "Add note" +msgstr "Notiz hinzufügen" + +msgid "Add note to %s" +msgstr "Notiz zu %s hinzufügen" + +msgid "per day" +msgstr "pro Tag" + +msgid "Compact view" +msgstr "Kompakte Ansicht" + +msgid "Normal view" +msgstr "Normale Ansicht" + +msgid "Only undone items" +msgstr "Nur unerledigte Einträge" + +msgid "Add product" +msgstr "Produkt hinzufügen" + +msgid "Add product to %s" +msgstr "Produkt zu %s hinzufügen" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" +"Alle Zutaten, die diese Woche von Rezepten oder Produkten benötigt werden, " +"aus dem Bestand entfernen" + +msgid "Meal plan recipe" +msgstr "Speiseplan Rezept" + +msgid "Meal plan note" +msgstr "Speiseplan Notiz" + +msgid "Meal plan product" +msgstr "Speiseplan Produkt" + +msgid "Scan mode" +msgstr "Scan-Modus" + +msgid "on" +msgstr "an" + +msgid "off" +msgstr "aus" + +msgid "" +"Scan mode is on but not all required fields could be populated automatically" +msgstr "" +"Scan-Modus ist eingeschaltet, aber nicht alle erforderlichen Felder konnten " +"automatisch ausgefüllt werden" + +msgid "Is freezer" +msgstr "Ist ein Gefrier-Standort (also z. B. ein Gefrierschrank)" + +msgid "" +"When moving products from/to a freezer location, the products best before " +"date is automatically adjusted according to the product settings" +msgstr "" +"Beim Umlagen von Produkten von/zu einem Gefrier-Standort wird das " +"Mindesthaltbarkeitsdatum der Produkte automatisch entsprechend den " +"Produkteinstellungen angepasst" + +msgid "" +"On moving this product to a freezer location (so when freezing it), the best" +" before date will be replaced by today + this amount of days" +msgstr "" +"Wenn dieses Produkt zu einem Gefrier-Standort umgelagert (sprich " +"eingefroren) wird, wird das Mindesthaltbarkeitsdatum durch heute + diese " +"Anzahl von Tagen ersetzt" + +msgid "Default best before days after freezing" +msgstr "Standard Haltbartkeit in Tagen nach dem Einfrieren" + +msgid "" +"On moving this product from a freezer location (so when thawing it), the " +"best before date will be replaced by today + this amount of days" +msgstr "" +"Wenn dieses Produkt von einem Gefrier-Standort umgelagert (sprich aufgetaut)" +" wird, wird das Mindesthaltbarkeitsdatum durch heute + diese Anzahl von " +"Tagen ersetzt" + +msgid "Default best before days after thawing" +msgstr "Standard Haltbartkeit in Tagen nach dem Auftauen" + +msgid "This cannot be the same as the \"From\" location" +msgstr "Dies kann nicht derselbe Standort wie \"Von Standort\" sein" + +msgid "Thawed" +msgstr "Aufgetaut" + +msgid "Frozen" +msgstr "Eingefroren" diff --git a/localization/demo_data.pot b/localization/demo_data.pot index 3ffc43a6..30de0313 100644 --- a/localization/demo_data.pot +++ b/localization/demo_data.pot @@ -327,3 +327,15 @@ msgstr "" msgid "Portuguese (Brazil)" msgstr "" + +msgid "This is a note" +msgstr "" + +msgid "Freezer" +msgstr "" + +msgid "Hungarian" +msgstr "" + +msgid "Slovak" +msgstr "" diff --git a/localization/en/stock_transaction_types.po b/localization/en/stock_transaction_types.po index d8b65ef1..621fbfe1 100644 --- a/localization/en/stock_transaction_types.po +++ b/localization/en/stock_transaction_types.po @@ -35,3 +35,6 @@ msgstr "Stock entry edited (old values)" msgid "stock-edit-new" msgstr "Stock entry edited (new values)" + +msgid "self-production" +msgstr "Self-production" diff --git a/localization/en_GB/chore_assignment_types.po b/localization/en_GB/chore_assignment_types.po index cacd1f2f..c21980f8 100644 --- a/localization/en_GB/chore_assignment_types.po +++ b/localization/en_GB/chore_assignment_types.po @@ -1,3 +1,5 @@ +# Translators: +# Jonathan Adams , 2020 # msgid "" msgstr "" @@ -5,6 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-09-17 10:45+0000\n" +"Last-Translator: Jonathan Adams , 2020\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/grocy/teams/93189/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,13 +17,13 @@ msgstr "" "X-Domain: grocy/chore_assignment_types\n" msgid "no-assignment" -msgstr "" +msgstr "no-assignment" msgid "who-least-did-first" -msgstr "" +msgstr "who-least-did-first" msgid "random" -msgstr "" +msgstr "random" msgid "in-alphabetical-order" -msgstr "" +msgstr "in-alphabetical-order" diff --git a/localization/en_GB/chore_period_types.po b/localization/en_GB/chore_period_types.po index 2f17bcfd..91d5d29b 100644 --- a/localization/en_GB/chore_period_types.po +++ b/localization/en_GB/chore_period_types.po @@ -1,3 +1,5 @@ +# Translators: +# Jonathan Adams , 2020 # msgid "" msgstr "" @@ -5,6 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Jonathan Adams , 2020\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/grocy/teams/93189/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,19 +17,19 @@ msgstr "" "X-Domain: grocy/chore_types\n" msgid "manually" -msgstr "" +msgstr "manually" msgid "dynamic-regular" -msgstr "" +msgstr "dynamic-regular" msgid "daily" -msgstr "" +msgstr "daily" msgid "weekly" -msgstr "" +msgstr "weekly" msgid "monthly" -msgstr "" +msgstr "monthly" msgid "yearly" -msgstr "" +msgstr "yearly" diff --git a/localization/en_GB/demo_data.po b/localization/en_GB/demo_data.po index a86d5ade..8d527cc1 100644 --- a/localization/en_GB/demo_data.po +++ b/localization/en_GB/demo_data.po @@ -1,3 +1,5 @@ +# Translators: +# Jonathan Adams , 2020 # msgid "" msgstr "" @@ -5,6 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Jonathan Adams , 2020\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/grocy/teams/93189/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,314 +17,329 @@ msgstr "" "X-Domain: grocy/demo_data\n" msgid "Cookies" -msgstr "" +msgstr "Cookies" msgid "Chocolate" -msgstr "" +msgstr "Chocolate" msgid "Pantry" -msgstr "" +msgstr "Pantry" msgid "Candy cupboard" -msgstr "" +msgstr "Candy cupboard" msgid "Tinned food cupboard" -msgstr "" +msgstr "Tinned food cupboard" msgid "Fridge" -msgstr "" +msgstr "Fridge" msgid "Piece" msgid_plural "Pieces" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Piece" +msgstr[1] "Pieces" msgid "Pack" msgid_plural "Packs" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Pack" +msgstr[1] "Packs" msgid "Glass" msgid_plural "Glasses" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Glass" +msgstr[1] "Glasses" msgid "Tin" msgid_plural "Tins" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Tin" +msgstr[1] "Tins" msgid "Can" msgid_plural "Cans" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Can" +msgstr[1] "Cans" msgid "Bunch" msgid_plural "Bunches" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Bunch" +msgstr[1] "Bunches" msgid "Gummy bears" -msgstr "" +msgstr "Gummy bears" msgid "Crisps" -msgstr "" +msgstr "Crisps" msgid "Eggs" -msgstr "" +msgstr "Eggs" msgid "Noodles" -msgstr "" +msgstr "Noodles" msgid "Pickles" -msgstr "" +msgstr "Pickles" msgid "Gulash soup" -msgstr "" +msgstr "Gulash soup" msgid "Yogurt" -msgstr "" +msgstr "Yogurt" msgid "Cheese" -msgstr "" +msgstr "Cheese" msgid "Cold cuts" -msgstr "" +msgstr "Cold cuts" msgid "Paprika" -msgstr "" +msgstr "Paprika" msgid "Cucumber" -msgstr "" +msgstr "Cucumber" msgid "Radish" -msgstr "" +msgstr "Radish" msgid "Tomato" -msgstr "" +msgstr "Tomato" msgid "Changed towels in the bathroom" -msgstr "" +msgstr "Changed towels in the bathroom" msgid "Cleaned the kitchen floor" -msgstr "" +msgstr "Cleaned the kitchen floor" msgid "Warranty ends" -msgstr "" +msgstr "Warranty ends" msgid "TV remote control" -msgstr "" +msgstr "TV remote control" msgid "Alarm clock" -msgstr "" +msgstr "Alarm clock" msgid "Heat remote control" -msgstr "" +msgstr "Heat remote control" msgid "Lawn mowed in the garden" -msgstr "" +msgstr "Lawn mowed in the garden" msgid "Some good snacks" -msgstr "" +msgstr "Some good snacks" msgid "Pizza dough" -msgstr "" +msgstr "Pizza dough" msgid "Sieved tomatoes" -msgstr "" +msgstr "Sieved tomatoes" msgid "Salami" -msgstr "" +msgstr "Salami" msgid "Toast" -msgstr "" +msgstr "Toast" msgid "Minced meat" -msgstr "" +msgstr "Minced meat" msgid "Pizza" -msgstr "" +msgstr "Pizza" msgid "Spaghetti bolognese" -msgstr "" +msgstr "Spaghetti bolognese" msgid "Sandwiches" -msgstr "" +msgstr "Sandwiches" msgid "English" -msgstr "" +msgstr "English" msgid "German" -msgstr "" +msgstr "German" msgid "Italian" -msgstr "" +msgstr "Italian" msgid "This is the note content of the recipe ingredient" -msgstr "" +msgstr "This is the note content of the recipe ingredient" msgid "Demo User" -msgstr "" +msgstr "Demo User" msgid "Gram" msgid_plural "Grams" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Gram" +msgstr[1] "Grams" msgid "Flour" -msgstr "" +msgstr "Flour" msgid "Pancakes" -msgstr "" +msgstr "Pancakes" msgid "Sugar" -msgstr "" +msgstr "Sugar" msgid "Home" -msgstr "" +msgstr "Home" msgid "Life" -msgstr "" +msgstr "Life" msgid "Projects" -msgstr "" +msgstr "Projects" msgid "Repair the garage door" -msgstr "" +msgstr "Repair the garage door" msgid "Fork and improve grocy" -msgstr "" +msgstr "Fork and improve grocy" msgid "Find a solution for what to do when I forget the door keys" -msgstr "" +msgstr "Find a solution for what to do when I forget the door keys" msgid "Sweets" -msgstr "" +msgstr "Sweets" msgid "Bakery products" -msgstr "" +msgstr "Bakery products" msgid "Tinned food" -msgstr "" +msgstr "Tinned food" msgid "Butchery products" -msgstr "" +msgstr "Butchery products" msgid "Vegetables/Fruits" -msgstr "" +msgstr "Vegetables/Fruits" msgid "Refrigerated products" -msgstr "" +msgstr "Refrigerated products" msgid "Coffee machine" -msgstr "" +msgstr "Coffee machine" msgid "Dishwasher" -msgstr "" +msgstr "Dishwasher" msgid "Liter" -msgstr "" +msgstr "Liter" msgid "Liters" -msgstr "" +msgstr "Liters" msgid "Bottle" -msgstr "" +msgstr "Bottle" msgid "Bottles" -msgstr "" +msgstr "Bottles" msgid "Milk" -msgstr "" +msgstr "Milk" msgid "Chocolate sauce" -msgstr "" +msgstr "Chocolate sauce" msgid "Milliliters" -msgstr "" +msgstr "Milliliters" msgid "Milliliter" -msgstr "" +msgstr "Milliliter" msgid "Bottom" -msgstr "" +msgstr "Bottom" msgid "Topping" -msgstr "" +msgstr "Topping" msgid "French" -msgstr "" +msgstr "French" msgid "Turkish" -msgstr "" +msgstr "Turkish" msgid "Spanish" -msgstr "" +msgstr "Spanish" msgid "Russian" -msgstr "" +msgstr "Russian" msgid "The thing which happens on the 5th of every month" -msgstr "" +msgstr "The thing which happens on the 5th of every month" msgid "The thing which happens daily" -msgstr "" +msgstr "The thing which happens daily" msgid "The thing which happens on Mondays and Wednesdays" -msgstr "" +msgstr "The thing which happens on Mondays and Wednesdays" msgid "Swedish" -msgstr "" +msgstr "Swedish" msgid "Polish" -msgstr "" +msgstr "Polish" msgid "Milk Chocolate" -msgstr "" +msgstr "Milk Chocolate" msgid "Dark Chocolate" -msgstr "" +msgstr "Dark Chocolate" msgid "Slice" msgid_plural "Slices" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Slice" +msgstr[1] "Slices" msgid "Example userentity" -msgstr "" +msgstr "Example userentity" msgid "This is an example user entity..." -msgstr "" +msgstr "This is an example user entity..." msgid "Custom field" -msgstr "" +msgstr "Custom field" msgid "Example field value..." -msgstr "" +msgstr "Example field value..." msgid "Waffle rolls" -msgstr "" +msgstr "Waffle rolls" msgid "Danish" -msgstr "" +msgstr "Danish" msgid "Dutch" -msgstr "" +msgstr "Dutch" msgid "Norwegian" -msgstr "" +msgstr "Norwegian" msgid "Demo" -msgstr "" +msgstr "Demo" msgid "Stable version" -msgstr "" +msgstr "Stable version" msgid "Preview version" -msgstr "" +msgstr "Preview version" msgid "current release" -msgstr "" +msgstr "current release" msgid "not yet released" +msgstr "not yet released" + +msgid "Portuguese (Brazil)" +msgstr "Portuguese (Brazil)" + +msgid "This is a note" +msgstr "" + +msgid "Freezer" +msgstr "" + +msgid "Hungarian" +msgstr "" + +msgid "Slovak" msgstr "" diff --git a/localization/en_GB/stock_transaction_types.po b/localization/en_GB/stock_transaction_types.po index a9d88a61..22036d36 100644 --- a/localization/en_GB/stock_transaction_types.po +++ b/localization/en_GB/stock_transaction_types.po @@ -1,3 +1,5 @@ +# Translators: +# Jonathan Adams , 2020 # msgid "" msgstr "" @@ -5,6 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Jonathan Adams , 2020\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/grocy/teams/93189/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,13 +17,28 @@ msgstr "" "X-Domain: grocy/stock_transaction_types\n" msgid "purchase" -msgstr "" +msgstr "purchase" + +msgid "transfer_from" +msgstr "transfer_from" + +msgid "transfer_to" +msgstr "transfer_to" msgid "consume" -msgstr "" +msgstr "consume" msgid "inventory-correction" -msgstr "" +msgstr "inventory-correction" msgid "product-opened" +msgstr "product-opened" + +msgid "stock-edit-old" +msgstr "stock-edit-old" + +msgid "stock-edit-new" +msgstr "stock-edit-new" + +msgid "self-production" msgstr "" diff --git a/localization/en_GB/strings.po b/localization/en_GB/strings.po index a6c18be3..99e607b5 100644 --- a/localization/en_GB/strings.po +++ b/localization/en_GB/strings.po @@ -1,3 +1,5 @@ +# Translators: +# Jonathan Adams , 2020 # msgid "" msgstr "" @@ -5,6 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Jonathan Adams , 2020\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/grocy/teams/93189/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,999 +17,1019 @@ msgstr "" "X-Domain: grocy/strings\n" msgid "Stock overview" -msgstr "" +msgstr "Stock overview" msgid "%s product expires" msgid_plural "%s products expiring" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s product expires" +msgstr[1] "%s products expiring" msgid "within the next day" msgid_plural "within the next %s days" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "within the next day" +msgstr[1] "within the next %s days" msgid "%s product is already expired" msgid_plural "%s products are already expired" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s product is already expired" +msgstr[1] "%s products are already expired" msgid "%s product is below defined min. stock amount" msgid_plural "%s products are below defined min. stock amount" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s product is below defined min. stock amount" +msgstr[1] "%s products are below defined min. stock amount" msgid "Product" -msgstr "" +msgstr "Product" msgid "%s Product" msgid_plural "%s Products" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s Product" +msgstr[1] "%s Products" msgid "Amount" -msgstr "" +msgstr "Amount" msgid "Next best before date" -msgstr "" +msgstr "Next best before date" msgid "Logout" -msgstr "" +msgstr "Logout" msgid "Chores overview" -msgstr "" +msgstr "Chores overview" msgid "Batteries overview" -msgstr "" +msgstr "Batteries overview" msgid "Purchase" -msgstr "" +msgstr "Purchase" msgid "Consume" -msgstr "" +msgstr "Consume" msgid "Inventory" -msgstr "" +msgstr "Inventory" msgid "Shopping list" -msgstr "" +msgstr "Shopping list" msgid "Chore tracking" -msgstr "" +msgstr "Chore tracking" msgid "Battery tracking" -msgstr "" +msgstr "Battery tracking" msgid "Locations" -msgstr "" +msgstr "Locations" msgid "Quantity units" -msgstr "" +msgstr "Quantity units" msgid "Chores" -msgstr "" +msgstr "Chores" msgid "Batteries" -msgstr "" +msgstr "Batteries" msgid "Chore" -msgstr "" +msgstr "Chore" msgid "Next estimated tracking" -msgstr "" +msgstr "Next estimated tracking" msgid "Last tracked" -msgstr "" +msgstr "Last tracked" msgid "Battery" -msgstr "" +msgstr "Battery" msgid "Last charged" -msgstr "" +msgstr "Last charged" msgid "Next planned charge cycle" -msgstr "" +msgstr "Next planned charge cycle" msgid "Best before" -msgstr "" +msgstr "Best before" msgid "OK" -msgstr "" +msgstr "OK" msgid "Product overview" -msgstr "" +msgstr "Product overview" msgid "Stock quantity unit" -msgstr "" +msgstr "Stock quantity unit" msgid "Stock amount" -msgstr "" +msgstr "Stock amount" msgid "Last purchased" -msgstr "" +msgstr "Last purchased" msgid "Last used" -msgstr "" +msgstr "Last used" msgid "Spoiled" -msgstr "" +msgstr "Spoiled" msgid "Barcode lookup is disabled" -msgstr "" +msgstr "Barcode lookup is disabled" msgid "" "will be added to the list of barcodes for the selected product on submit" msgstr "" +"will be added to the list of barcodes for the selected product on submit" msgid "New amount" -msgstr "" +msgstr "New amount" msgid "Note" -msgstr "" +msgstr "Note" msgid "Tracked time" -msgstr "" +msgstr "Tracked time" msgid "Chore overview" -msgstr "" +msgstr "Chore overview" msgid "Tracked count" -msgstr "" +msgstr "Tracked count" msgid "Battery overview" -msgstr "" +msgstr "Battery overview" msgid "Charge cycles count" -msgstr "" +msgstr "Charge cycles count" msgid "Create shopping list item" -msgstr "" +msgstr "Create shopping list item" msgid "Edit shopping list item" -msgstr "" +msgstr "Edit shopping list item" msgid "Save" -msgstr "" +msgstr "Save" msgid "Add" -msgstr "" +msgstr "Add" msgid "Name" -msgstr "" +msgstr "Name" msgid "Location" -msgstr "" +msgstr "Location" msgid "Min. stock amount" -msgstr "" +msgstr "Min. stock amount" msgid "QU purchase" -msgstr "" +msgstr "QU purchase" msgid "QU stock" -msgstr "" +msgstr "QU stock" msgid "QU factor" -msgstr "" +msgstr "QU factor" msgid "Description" -msgstr "" +msgstr "Description" msgid "Create product" -msgstr "" +msgstr "Create product" msgid "Barcode(s)" -msgstr "" +msgstr "Barcode(s)" msgid "Minimum stock amount" -msgstr "" +msgstr "Minimum stock amount" msgid "Default best before days" -msgstr "" +msgstr "Default best before days" msgid "Quantity unit purchase" -msgstr "" +msgstr "Quantity unit purchase" msgid "Quantity unit stock" -msgstr "" +msgstr "Quantity unit stock" msgid "Factor purchase to stock quantity unit" -msgstr "" +msgstr "Factor purchase to stock quantity unit" msgid "Create location" -msgstr "" +msgstr "Create location" msgid "Create quantity unit" -msgstr "" +msgstr "Create quantity unit" msgid "Period type" -msgstr "" +msgstr "Period type" msgid "Period days" -msgstr "" +msgstr "Period days" msgid "Create chore" -msgstr "" +msgstr "Create chore" msgid "Used in" -msgstr "" +msgstr "Used in" msgid "Create battery" -msgstr "" +msgstr "Create battery" msgid "Edit battery" -msgstr "" +msgstr "Edit battery" msgid "Edit chore" -msgstr "" +msgstr "Edit chore" msgid "Edit quantity unit" -msgstr "" +msgstr "Edit quantity unit" msgid "Edit product" -msgstr "" +msgstr "Edit product" msgid "Edit location" -msgstr "" +msgstr "Edit location" msgid "Record data" -msgstr "" +msgstr "Record data" msgid "Manage master data" -msgstr "" +msgstr "Manage master data" msgid "This will apply to added products" -msgstr "" +msgstr "This will apply to added products" msgid "never" -msgstr "" +msgstr "never" msgid "Add products that are below defined min. stock amount" -msgstr "" +msgstr "Add products that are below defined min. stock amount" msgid "" "For purchases this amount of days will be added to today for the best before" " date suggestion" msgstr "" +"For purchases this amount of days will be added to today for the best before" +" date suggestion" msgid "This means 1 %1$s purchased will be converted into %2$s %3$s in stock" -msgstr "" +msgstr "This means 1 %1$s purchased will be converted into %2$s %3$s in stock" msgid "Login" -msgstr "" +msgstr "Login" msgid "Username" -msgstr "" +msgstr "Username" msgid "Password" -msgstr "" +msgstr "Password" msgid "Invalid credentials, please try again" -msgstr "" +msgstr "Invalid credentials, please try again" msgid "Are you sure to delete battery \"%s\"?" -msgstr "" +msgstr "Are you sure to delete battery \"%s\"?" msgid "Yes" -msgstr "" +msgstr "Yes" msgid "No" -msgstr "" +msgstr "No" msgid "Are you sure to delete chore \"%s\"?" -msgstr "" +msgstr "Are you sure to delete chore \"%s\"?" msgid "\"%s\" could not be resolved to a product, how do you want to proceed?" -msgstr "" +msgstr "\"%s\" could not be resolved to a product, how do you want to proceed?" msgid "Create or assign product" -msgstr "" +msgstr "Create or assign product" msgid "Cancel" -msgstr "" +msgstr "Cancel" msgid "Add as new product" -msgstr "" +msgstr "Add as new product" msgid "Add as barcode to existing product" -msgstr "" +msgstr "Add as barcode to existing product" msgid "Add as new product and prefill barcode" -msgstr "" +msgstr "Add as new product and prefill barcode" msgid "Are you sure to delete quantity unit \"%s\"?" -msgstr "" +msgstr "Are you sure to delete quantity unit \"%s\"?" msgid "Are you sure to delete product \"%s\"?" -msgstr "" +msgstr "Are you sure to delete product \"%s\"?" msgid "Are you sure to delete location \"%s\"?" -msgstr "" +msgstr "Are you sure to delete location \"%s\"?" msgid "Manage API keys" -msgstr "" +msgstr "Manage API keys" msgid "REST API & data model documentation" -msgstr "" +msgstr "REST API & data model documentation" msgid "API keys" -msgstr "" +msgstr "API keys" msgid "Create new API key" -msgstr "" +msgstr "Create new API key" msgid "API key" -msgstr "" +msgstr "API key" msgid "Expires" -msgstr "" +msgstr "Expires" msgid "Created" -msgstr "" +msgstr "Created" msgid "This product is not in stock" -msgstr "" +msgstr "This product is not in stock" msgid "This means %s will be added to stock" -msgstr "" +msgstr "This means %s will be added to stock" msgid "This means %s will be removed from stock" -msgstr "" +msgstr "This means %s will be removed from stock" msgid "" "This means the next execution of this chore is scheduled %s days after the " "last execution" msgstr "" +"This means the next execution of this chore is scheduled %s days after the " +"last execution" msgid "Removed %1$s of %2$s from stock" -msgstr "" +msgstr "Removed %1$s of %2$s from stock" msgid "About grocy" -msgstr "" +msgstr "About grocy" msgid "Close" -msgstr "" +msgstr "Close" msgid "Released on" -msgstr "" +msgstr "Released on" msgid "Added %1$s of %2$s to stock" -msgstr "" +msgstr "Added %1$s of %2$s to stock" msgid "Stock amount of %1$s is now %2$s" -msgstr "" +msgstr "Stock amount of %1$s is now %2$s" msgid "Tracked execution of chore %1$s on %2$s" -msgstr "" +msgstr "Tracked execution of chore %1$s on %2$s" msgid "Tracked charge cycle of battery %1$s on %2$s" -msgstr "" +msgstr "Tracked charge cycle of battery %1$s on %2$s" msgid "Consume all %s which are currently in stock" -msgstr "" +msgstr "Consume all %s which are currently in stock" msgid "All" -msgstr "" +msgstr "All" msgid "Track charge cycle of battery %s" -msgstr "" +msgstr "Track charge cycle of battery %s" msgid "Track execution of chore %s" -msgstr "" +msgstr "Track execution of chore %s" msgid "Filter by location" -msgstr "" +msgstr "Filter by location" msgid "Search" -msgstr "" +msgstr "Search" msgid "Not logged in" -msgstr "" +msgstr "Not logged in" msgid "You have to select a product" -msgstr "" +msgstr "You have to select a product" msgid "You have to select a chore" -msgstr "" +msgstr "You have to select a chore" msgid "You have to select a battery" -msgstr "" +msgstr "You have to select a battery" msgid "A name is required" -msgstr "" +msgstr "A name is required" msgid "A location is required" -msgstr "" +msgstr "A location is required" msgid "The amount cannot be lower than %s" -msgstr "" +msgstr "The amount cannot be lower than %s" msgid "This cannot be negative" -msgstr "" +msgstr "This cannot be negative" msgid "A quantity unit is required" -msgstr "" +msgstr "A quantity unit is required" msgid "A period type is required" -msgstr "" +msgstr "A period type is required" msgid "A best before date is required" -msgstr "" +msgstr "A best before date is required" msgid "Settings" -msgstr "" +msgstr "Settings" msgid "This can only be before now" -msgstr "" +msgstr "This can only be before now" msgid "Calendar" -msgstr "" +msgstr "Calendar" msgid "Recipes" -msgstr "" +msgstr "Recipes" msgid "Edit recipe" -msgstr "" +msgstr "Edit recipe" msgid "New recipe" -msgstr "" +msgstr "New recipe" msgid "Ingredients list" -msgstr "" +msgstr "Ingredients list" msgid "Add recipe ingredient" -msgstr "" +msgstr "Add recipe ingredient" msgid "Edit recipe ingredient" -msgstr "" +msgstr "Edit recipe ingredient" msgid "Are you sure to delete recipe \"%s\"?" -msgstr "" +msgstr "Are you sure to delete recipe \"%s\"?" msgid "Are you sure to delete recipe ingredient \"%s\"?" -msgstr "" +msgstr "Are you sure to delete recipe ingredient \"%s\"?" msgid "Are you sure to empty shopping list \"%s\"?" -msgstr "" +msgstr "Are you sure to empty shopping list \"%s\"?" msgid "Clear list" -msgstr "" +msgstr "Clear list" msgid "Requirements fulfilled" -msgstr "" +msgstr "Requirements fulfilled" msgid "Put missing products on shopping list" -msgstr "" +msgstr "Put missing products on shopping list" msgid "Enough in stock" -msgstr "" +msgstr "Enough in stock" msgid "" "Not enough in stock, %s ingredient missing but already on the shopping list" msgid_plural "" "Not enough in stock, %s ingredients missing but already on the shopping list" msgstr[0] "" +"Not enough in stock, %s ingredient missing but already on the shopping list" msgstr[1] "" +"Not enough in stock, %s ingredients missing but already on the shopping list" msgid "Expand to fullscreen" -msgstr "" +msgstr "Expand to fullscreen" msgid "Ingredients" -msgstr "" +msgstr "Ingredients" msgid "Preparation" -msgstr "" +msgstr "Preparation" msgid "Recipe" -msgstr "" +msgstr "Recipe" msgid "Not enough in stock, %1$s missing, %2$s already on shopping list" -msgstr "" +msgstr "Not enough in stock, %1$s missing, %2$s already on shopping list" msgid "Show notes" -msgstr "" +msgstr "Show notes" msgid "Put missing amount on shopping list" -msgstr "" +msgstr "Put missing amount on shopping list" msgid "" "Are you sure to put all missing ingredients for recipe \"%s\" on the " "shopping list?" msgstr "" +"Are you sure to put all missing ingredients for recipe \"%s\" on the " +"shopping list?" msgid "Added for recipe %s" -msgstr "" +msgstr "Added for recipe %s" msgid "Manage users" -msgstr "" +msgstr "Manage users" msgid "User" -msgstr "" +msgstr "User" msgid "Users" -msgstr "" +msgstr "Users" msgid "Are you sure to delete user \"%s\"?" -msgstr "" +msgstr "Are you sure to delete user \"%s\"?" msgid "Create user" -msgstr "" +msgstr "Create user" msgid "Edit user" -msgstr "" +msgstr "Edit user" msgid "First name" -msgstr "" +msgstr "First name" msgid "Last name" -msgstr "" +msgstr "Last name" msgid "A username is required" -msgstr "" +msgstr "A username is required" msgid "Confirm password" -msgstr "" +msgstr "Confirm password" msgid "Passwords do not match" -msgstr "" +msgstr "Passwords do not match" msgid "Change password" -msgstr "" +msgstr "Change password" msgid "Done by" -msgstr "" +msgstr "Done by" msgid "Last done by" -msgstr "" +msgstr "Last done by" msgid "Unknown" -msgstr "" +msgstr "Unknown" msgid "Filter by chore" -msgstr "" +msgstr "Filter by chore" msgid "Chores journal" -msgstr "" +msgstr "Chores journal" msgid "0 means suggestions for the next charge cycle are disabled" -msgstr "" +msgstr "0 means suggestions for the next charge cycle are disabled" msgid "Charge cycle interval (days)" -msgstr "" +msgstr "Charge cycle interval (days)" msgid "Last price" -msgstr "" +msgstr "Last price" msgid "Price history" -msgstr "" +msgstr "Price history" msgid "No price history available" -msgstr "" +msgstr "No price history available" msgid "Price" -msgstr "" +msgstr "Price" msgid "in %s per purchase quantity unit" -msgstr "" +msgstr "in %s per purchase quantity unit" msgid "The price cannot be lower than %s" -msgstr "" +msgstr "The price cannot be lower than %s" msgid "Unit" -msgstr "" +msgstr "Unit" msgid "%s Unit" msgid_plural "%s Units" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s Unit" +msgstr[1] "%s Units" msgid "%s chore is due to be done" msgid_plural "%s chores are due to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s chore is due to be done" +msgstr[1] "%s chores are due to be done" msgid "%s chore is overdue to be done" msgid_plural "%s chores are overdue to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s chore is overdue to be done" +msgstr[1] "%s chores are overdue to be done" msgid "%s battery is due to be charged" msgid_plural "%s batteries are due to be charged" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s battery is due to be charged" +msgstr[1] "%s batteries are due to be charged" msgid "%s battery is overdue to be charged" msgid_plural "%s batteries are overdue to be charged" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s battery is overdue to be charged" +msgstr[1] "%s batteries are overdue to be charged" msgid "in singular form" -msgstr "" +msgstr "in singular form" msgid "Never expires" -msgstr "" +msgstr "Never expires" msgid "This cannot be lower than %s" -msgstr "" +msgstr "This cannot be lower than %s" msgid "-1 means that this product never expires" -msgstr "" +msgstr "-1 means that this product never expires" msgid "Quantity unit" -msgstr "" +msgstr "Quantity unit" msgid "" "Only check if a single unit is in stock (a different quantity can then be " "used above)" msgstr "" +"Only check if a single unit is in stock (a different quantity can then be " +"used above)" msgid "" "Are you sure to consume all ingredients needed by recipe \"%s\" (ingredients" " marked with \"check only if a single unit is in stock\" will be ignored)?" msgstr "" +"Are you sure to consume all ingredients needed by recipe \"%s\" (ingredients" +" marked with \"check only if a single unit is in stock\" will be ignored)?" msgid "Removed all ingredients of recipe \"%s\" from stock" -msgstr "" +msgstr "Removed all ingredients of recipe \"%s\" from stock" msgid "Consume all ingredients needed by this recipe" -msgstr "" +msgstr "Consume all ingredients needed by this recipe" msgid "Click to show technical details" -msgstr "" +msgstr "Click to show technical details" msgid "Error while saving, probably this item already exists" -msgstr "" +msgstr "Error while saving, probably this item already exists" msgid "Error details" -msgstr "" +msgstr "Error details" msgid "Tasks" -msgstr "" +msgstr "Tasks" msgid "Show done tasks" -msgstr "" +msgstr "Show done tasks" msgid "Task" -msgstr "" +msgstr "Task" msgid "Due" -msgstr "" +msgstr "Due" msgid "Assigned to" -msgstr "" +msgstr "Assigned to" msgid "Mark task \"%s\" as completed" -msgstr "" +msgstr "Mark task \"%s\" as completed" msgid "Uncategorized" -msgstr "" +msgstr "Uncategorized" msgid "Task categories" -msgstr "" +msgstr "Task categories" msgid "Create task" -msgstr "" +msgstr "Create task" msgid "A due date is required" -msgstr "" +msgstr "A due date is required" msgid "Category" -msgstr "" +msgstr "Category" msgid "Edit task" -msgstr "" +msgstr "Edit task" msgid "Are you sure to delete task \"%s\"?" -msgstr "" +msgstr "Are you sure to delete task \"%s\"?" msgid "%s task is due to be done" msgid_plural "%s tasks are due to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s task is due to be done" +msgstr[1] "%s tasks are due to be done" msgid "%s task is overdue to be done" msgid_plural "%s tasks are overdue to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s task is overdue to be done" +msgstr[1] "%s tasks are overdue to be done" msgid "Edit task category" -msgstr "" +msgstr "Edit task category" msgid "Create task category" -msgstr "" +msgstr "Create task category" msgid "Product groups" -msgstr "" +msgstr "Product groups" msgid "Ungrouped" -msgstr "" +msgstr "Ungrouped" msgid "Create product group" -msgstr "" +msgstr "Create product group" msgid "Edit product group" -msgstr "" +msgstr "Edit product group" msgid "Product group" -msgstr "" +msgstr "Product group" msgid "Are you sure to delete product group \"%s\"?" -msgstr "" +msgstr "Are you sure to delete product group \"%s\"?" msgid "Stay logged in permanently" -msgstr "" +msgstr "Stay logged in permanently" msgid "When not set, you will get logged out at latest after 30 days" -msgstr "" +msgstr "When not set, you will get logged out at latest after 30 days" msgid "Filter by status" -msgstr "" +msgstr "Filter by status" msgid "Below min. stock amount" -msgstr "" +msgstr "Below min. stock amount" msgid "Expiring soon" -msgstr "" +msgstr "Expiring soon" msgid "Already expired" -msgstr "" +msgstr "Already expired" msgid "Due soon" -msgstr "" +msgstr "Due soon" msgid "Overdue" -msgstr "" +msgstr "Overdue" msgid "View settings" -msgstr "" +msgstr "View settings" msgid "Auto reload on external changes" -msgstr "" +msgstr "Auto reload on external changes" msgid "Enable night mode" -msgstr "" +msgstr "Enable night mode" msgid "Auto enable in time range" -msgstr "" +msgstr "Auto enable in time range" msgid "From" -msgstr "" +msgstr "From" msgid "in format" -msgstr "" +msgstr "in format" msgid "To" -msgstr "" +msgstr "To" msgid "Time range goes over midnight" -msgstr "" +msgstr "Time range goes over midnight" msgid "Product picture" -msgstr "" +msgstr "Product picture" msgid "No file selected" -msgstr "" +msgstr "No file selected" msgid "If you don't select a file, the current picture will not be altered" -msgstr "" +msgstr "If you don't select a file, the current picture will not be altered" msgid "Delete" -msgstr "" +msgstr "Delete" msgid "The current picture will be deleted when you save the product" -msgstr "" +msgstr "The current picture will be deleted when you save the product" msgid "Select file" -msgstr "" +msgstr "Select file" msgid "Image of product %s" -msgstr "" +msgstr "Image of product %s" msgid "" "This product cannot be deleted because it is in stock, please remove the " "stock amount first." msgstr "" +"This product cannot be deleted because it is in stock, please remove the " +"stock amount first." msgid "Delete not possible" -msgstr "" +msgstr "Delete not possible" msgid "Equipment" -msgstr "" +msgstr "Equipment" msgid "Instruction manual" -msgstr "" +msgstr "Instruction manual" msgid "The selected equipment has no instruction manual" -msgstr "" +msgstr "The selected equipment has no instruction manual" msgid "Notes" -msgstr "" +msgstr "Notes" msgid "Edit equipment" -msgstr "" +msgstr "Edit equipment" msgid "Create equipment" -msgstr "" +msgstr "Create equipment" msgid "" "If you don't select a file, the current instruction manual will not be " "altered" msgstr "" +"If you don't select a file, the current instruction manual will not be " +"altered" msgid "No instruction manual available" -msgstr "" +msgstr "No instruction manual available" msgid "" "The current instruction manual will be deleted when you save the equipment" msgstr "" +"The current instruction manual will be deleted when you save the equipment" msgid "No picture available" -msgstr "" +msgstr "No picture available" msgid "Filter by product group" -msgstr "" +msgstr "Filter by product group" msgid "Presets for new products" -msgstr "" +msgstr "Presets for new products" msgid "Included recipes" -msgstr "" +msgstr "Included recipes" msgid "A recipe is required" -msgstr "" +msgstr "A recipe is required" msgid "Add included recipe" -msgstr "" +msgstr "Add included recipe" msgid "Edit included recipe" -msgstr "" +msgstr "Edit included recipe" msgid "Group" -msgstr "" +msgstr "Group" msgid "This will be used as a headline to group ingredients together" -msgstr "" +msgstr "This will be used as a headline to group ingredients together" msgid "Journal" -msgstr "" +msgstr "Journal" msgid "Stock journal" -msgstr "" +msgstr "Stock journal" msgid "Filter by product" -msgstr "" +msgstr "Filter by product" msgid "Booking time" -msgstr "" +msgstr "Booking time" msgid "Booking type" -msgstr "" +msgstr "Booking type" msgid "Undo booking" -msgstr "" +msgstr "Undo booking" msgid "Undone on" -msgstr "" +msgstr "Undone on" msgid "Batteries journal" -msgstr "" +msgstr "Batteries journal" msgid "Filter by battery" -msgstr "" +msgstr "Filter by battery" msgid "Undo charge cycle" -msgstr "" +msgstr "Undo charge cycle" msgid "Undo chore execution" -msgstr "" +msgstr "Undo chore execution" msgid "Chore execution successfully undone" -msgstr "" +msgstr "Chore execution successfully undone" msgid "Undo" -msgstr "" +msgstr "Undo" msgid "Booking successfully undone" -msgstr "" +msgstr "Booking successfully undone" msgid "Charge cycle successfully undone" -msgstr "" +msgstr "Charge cycle successfully undone" msgid "This cannot be negative and must be an integral number" -msgstr "" +msgstr "This cannot be negative and must be an integral number" msgid "Disable stock fulfillment checking for this ingredient" -msgstr "" +msgstr "Disable stock fulfillment checking for this ingredient" msgid "Add all list items to stock" -msgstr "" +msgstr "Add all list items to stock" msgid "Add %1$s of %2$s to stock" -msgstr "" +msgstr "Add %1$s of %2$s to stock" msgid "Adding shopping list item %1$s of %2$s" -msgstr "" +msgstr "Adding shopping list item %1$s of %2$s" msgid "Use a specific stock item" -msgstr "" +msgstr "Use a specific stock item" msgid "" "The first item in this list would be picked by the default rule which is " "\"First expiring first, then first in first out\"" msgstr "" +"The first item in this list would be picked by the default rule which is " +"\"First expiring first, then first in first out\"" msgid "Mark %1$s of %2$s as open" -msgstr "" +msgstr "Mark %1$s of %2$s as open" msgid "" -"When a product was marked as opened, the best before date will be replaced " -"by today + this amount of days (a value of 0 disables this)" +"When this product was marked as opened, the best before date will be " +"replaced by today + this amount of days (a value of 0 disables this)" msgstr "" msgid "Default best before days after opened" -msgstr "" +msgstr "Default best before days after opened" msgid "Marked %1$s of %2$s as opened" -msgstr "" +msgstr "Marked %1$s of %2$s as opened" msgid "Mark as opened" -msgstr "" - -msgid "Expires on %1$s; Bought on %2$s" -msgstr "" +msgstr "Mark as opened" msgid "Not opened" -msgstr "" +msgstr "Not opened" msgid "Opened" -msgstr "" +msgstr "Opened" msgid "%s opened" -msgstr "" +msgstr "%s opened" msgid "Product expires" -msgstr "" +msgstr "Product expires" msgid "Task due" -msgstr "" +msgstr "Task due" msgid "Chore due" -msgstr "" +msgstr "Chore due" msgid "Battery charge cycle due" -msgstr "" +msgstr "Battery charge cycle due" msgid "Show clock in header" -msgstr "" +msgstr "Show clock in header" msgid "Stock settings" -msgstr "" +msgstr "Stock settings" msgid "Shopping list to stock workflow" -msgstr "" +msgstr "Shopping list to stock workflow" msgid "" "Automatically do the booking using the last price and the amount of the " "shopping list item, if the product has \"Default best before days\" set" msgstr "" +"Automatically do the booking using the last price and the amount of the " +"shopping list item, if the product has \"Default best before days\" set" msgid "Skip" -msgstr "" +msgstr "Skip" msgid "Servings" -msgstr "" +msgstr "Servings" msgid "Costs" -msgstr "" +msgstr "Costs" msgid "Based on the prices of the last purchase per product" -msgstr "" +msgstr "Based on the prices of the last purchase per product" msgid "The ingredients listed here result in this amount of servings" -msgstr "" +msgstr "The ingredients listed here result in this amount of servings" msgid "Do not check against the shopping list when adding missing items to it" msgstr "" +"Do not check against the shopping list when adding missing items to it" msgid "" "By default the amount to be added to the shopping list is \"needed amount - " @@ -1014,626 +1037,834 @@ msgid "" "checked against the stock amount, not against what is already on the " "shopping list" msgstr "" +"By default the amount to be added to the shopping list is \"needed amount - " +"stock amount - shopping list amount\" - when this is enabled, it is only " +"checked against the stock amount, not against what is already on the " +"shopping list" msgid "Picture" -msgstr "" +msgstr "Picture" msgid "Uncheck ingredients to not put them on the shopping list" -msgstr "" +msgstr "Uncheck ingredients to not put them on the shopping list" msgid "This is for statistical purposes only" -msgstr "" +msgstr "This is for statistical purposes only" msgid "You have to select a recipe" -msgstr "" +msgstr "You have to select a recipe" msgid "Key type" -msgstr "" +msgstr "Key type" msgid "Share/Integrate calendar (iCal)" -msgstr "" +msgstr "Share/Integrate calendar (iCal)" msgid "" "Use the following (public) URL to share or integrate the calendar in iCal " "format" msgstr "" +"Use the following (public) URL to share or integrate the calendar in iCal " +"format" msgid "Allow partial units in stock" -msgstr "" +msgstr "Allow partial units in stock" msgid "Enable tare weight handling" -msgstr "" +msgstr "Enable tare weight handling" msgid "" "This is useful e.g. for flour in jars - on purchase/consume/inventory you " "always weigh the whole jar, the amount to be posted is then automatically " "calculated based on what is in stock and the tare weight defined below" msgstr "" +"This is useful e.g. for flour in jars - on purchase/consume/inventory you " +"always weigh the whole jar, the amount to be posted is then automatically " +"calculated based on what is in stock and the tare weight defined below" msgid "Tare weight" -msgstr "" +msgstr "Tare weight" msgid "" "Tare weight handling enabled - please weigh the whole container, the amount " "to be posted will be automatically calculcated" msgstr "" +"Tare weight handling enabled - please weigh the whole container, the amount " +"to be posted will be automatically calculcated" msgid "You have to select a location" -msgstr "" +msgstr "You have to select a location" msgid "List" -msgstr "" +msgstr "List" msgid "Gallery" -msgstr "" +msgstr "Gallery" msgid "The current picture will be deleted when you save the recipe" -msgstr "" +msgstr "The current picture will be deleted when you save the recipe" msgid "Show product details" -msgstr "" +msgstr "Show product details" msgid "Stock journal for this product" -msgstr "" +msgstr "Stock journal for this product" msgid "Show chore details" -msgstr "" +msgstr "Show chore details" msgid "Journal for this chore" -msgstr "" +msgstr "Journal for this chore" msgid "Show battery details" -msgstr "" +msgstr "Show battery details" msgid "Journal for this battery" -msgstr "" +msgstr "Journal for this battery" msgid "System info" -msgstr "" +msgstr "System info" msgid "Changelog" -msgstr "" +msgstr "Changelog" msgid "will be multiplied a factor of %1$s to get %2$s" -msgstr "" +msgstr "will be multiplied a factor of %1$s to get %2$s" msgid "The given date is earlier than today, are you sure?" -msgstr "" +msgstr "The given date is earlier than today, are you sure?" msgid "Product count" -msgstr "" +msgstr "Product count" msgid "Type a new product name or barcode and hit TAB to start a workflow" -msgstr "" +msgstr "Type a new product name or barcode and hit TAB to start a workflow" msgid "" "This will be used as the default setting when adding this product as a " "recipe ingredient" msgstr "" +"This will be used as the default setting when adding this product as a " +"recipe ingredient" msgid "Add item" -msgstr "" +msgstr "Add item" msgid "Selected shopping list" -msgstr "" +msgstr "Selected shopping list" msgid "New shopping list" -msgstr "" +msgstr "New shopping list" msgid "Delete shopping list" -msgstr "" +msgstr "Delete shopping list" msgid "Chores settings" -msgstr "" +msgstr "Chores settings" msgid "Batteries settings" -msgstr "" +msgstr "Batteries settings" msgid "Tasks settings" -msgstr "" +msgstr "Tasks settings" msgid "Create shopping list" -msgstr "" +msgstr "Create shopping list" msgid "Are you sure to delete shopping list \"%s\"?" -msgstr "" +msgstr "Are you sure to delete shopping list \"%s\"?" msgid "Average shelf life" -msgstr "" +msgstr "Average shelf life" msgid "Spoil rate" -msgstr "" +msgstr "Spoil rate" msgid "Show more" -msgstr "" +msgstr "Show more" msgid "Show less" -msgstr "" +msgstr "Show less" msgid "The amount must be between %1$s and %2$s" -msgstr "" +msgstr "The amount must be between %1$s and %2$s" msgid "Day of month" -msgstr "" +msgstr "Day of month" msgid "Monday" -msgstr "" +msgstr "Monday" msgid "Tuesday" -msgstr "" +msgstr "Tuesday" msgid "Wednesday" -msgstr "" +msgstr "Wednesday" msgid "Thursday" -msgstr "" +msgstr "Thursday" msgid "Friday" -msgstr "" +msgstr "Friday" msgid "Saturday" -msgstr "" +msgstr "Saturday" msgid "Sunday" -msgstr "" +msgstr "Sunday" msgid "Configure userfields" -msgstr "" +msgstr "Configure userfields" msgid "Userfields" -msgstr "" +msgstr "Userfields" msgid "Filter by entity" -msgstr "" +msgstr "Filter by entity" msgid "Entity" -msgstr "" +msgstr "Entity" msgid "Caption" -msgstr "" +msgstr "Caption" msgid "Type" -msgstr "" +msgstr "Type" msgid "Create userfield" -msgstr "" +msgstr "Create userfield" msgid "A entity is required" -msgstr "" +msgstr "A entity is required" msgid "A caption is required" -msgstr "" +msgstr "A caption is required" msgid "A type is required" -msgstr "" +msgstr "A type is required" msgid "Show as column in tables" -msgstr "" +msgstr "Show as column in tables" msgid "This is required and can only contain letters and numbers" -msgstr "" +msgstr "This is required and can only contain letters and numbers" msgid "Edit userfield" -msgstr "" +msgstr "Edit userfield" msgid "Plural forms" -msgstr "" +msgstr "Plural forms" msgid "One plural form per line, the current language requires" -msgstr "" +msgstr "One plural form per line, the current language requires" msgid "Plural count" -msgstr "" +msgstr "Plural count" msgid "Plural rule" -msgstr "" +msgstr "Plural rule" msgid "in plural form" -msgstr "" +msgstr "in plural form" msgid "Not enough in stock, %s ingredient missing" msgid_plural "Not enough in stock, %s ingredients missing" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Not enough in stock, %s ingredient missing" +msgstr[1] "Not enough in stock, %s ingredients missing" msgid "The amount cannot be lower than %1$s or equal %2$s" -msgstr "" +msgstr "The amount cannot be lower than %1$s or equal %2$s" msgid "Not enough in stock, but already on the shopping list" -msgstr "" +msgstr "Not enough in stock, but already on the shopping list" msgid "Not enough in stock" -msgstr "" +msgstr "Not enough in stock" msgid "Expiring soon days" -msgstr "" +msgstr "Expiring soon days" + +msgid "Default location" +msgstr "Default location" msgid "Default amount for purchase" -msgstr "" +msgstr "Default amount for purchase" msgid "Default amount for consume" -msgstr "" +msgstr "Default amount for consume" msgid "Variable amount" -msgstr "" +msgstr "Variable amount" msgid "" "When this is not empty, it will be shown instead of the amount entered above" " while the amount there will still be used for stock fulfillment checking" msgstr "" +"When this is not empty, it will be shown instead of the amount entered above" +" while the amount there will still be used for stock fulfillment checking" msgid "Track date only" -msgstr "" +msgstr "Track date only" msgid "When enabled only the day of an execution is tracked, not the time" -msgstr "" +msgstr "When enabled only the day of an execution is tracked, not the time" msgid "Consume %1$s of %2$s" -msgstr "" +msgstr "Consume %1$s of %2$s" msgid "Meal plan" -msgstr "" +msgstr "Meal plan" msgid "Add recipe to %s" -msgstr "" +msgstr "Add recipe to %s" msgid "%s serving" msgid_plural "%s servings" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s serving" +msgstr[1] "%s servings" msgid "Week costs" -msgstr "" +msgstr "Week costs" msgid "Configuration" -msgstr "" +msgstr "Configuration" msgid "A predefined list of values, one per line" -msgstr "" +msgstr "A predefined list of values, one per line" msgid "Chores due soon days" -msgstr "" +msgstr "Chores due soon days" msgid "Batteries due to be charged soon days" -msgstr "" +msgstr "Batteries due to be charged soon days" msgid "Tasks due soon days" -msgstr "" +msgstr "Tasks due soon days" msgid "Products" -msgstr "" +msgstr "Products" msgid "Marked task %s as completed on %s" -msgstr "" +msgstr "Marked task %s as completed on %s" msgid "Booking has subsequent dependent bookings, undo not possible" -msgstr "" +msgstr "Booking has subsequent dependent bookings, undo not possible" msgid "per serving" -msgstr "" +msgstr "per serving" msgid "Never" -msgstr "" +msgstr "Never" msgid "Today" -msgstr "" +msgstr "Today" msgid "Consume %1$s of %2$s as spoiled" -msgstr "" +msgstr "Consume %1$s of %2$s as spoiled" msgid "Not all ingredients of recipe \"%s\" are in stock, nothing removed" -msgstr "" +msgstr "Not all ingredients of recipe \"%s\" are in stock, nothing removed" msgid "Undo task \"%s\"" -msgstr "" +msgstr "Undo task \"%s\"" msgid "Due date rollover" -msgstr "" +msgstr "Due date rollover" msgid "" "When enabled the chore can never be overdue, the due date will shift forward" " each day when due" msgstr "" +"When enabled the chore can never be overdue, the due date will shift forward" +" each day when due" msgid "Location Content Sheet" -msgstr "" +msgstr "Location Content Sheet" msgid "Print" -msgstr "" +msgstr "Print" msgid "all locations" -msgstr "" +msgstr "all locations" msgid "" "Here you can print a page per location with the current stock, maybe to hang" " it there and note the consumed things on it." msgstr "" +"Here you can print a page per location with the current stock, maybe to hang" +" it there and note the consumed things on it." msgid "this location" -msgstr "" +msgstr "this location" msgid "Consumend amount" -msgstr "" +msgstr "Consumend amount" msgid "Time of printing" -msgstr "" +msgstr "Time of printing" msgid "Are you sure to delete equipment \"%s\"?" -msgstr "" +msgstr "Are you sure to delete equipment \"%s\"?" msgid "Parent product" -msgstr "" +msgstr "Parent product" msgid "" "Not possible because this product is already used as a parent product in " "another product" msgstr "" +"Not possible because this product is already used as a parent product in " +"another product" msgid "Default conversions" -msgstr "" +msgstr "Default conversions" msgid "Factor" -msgstr "" +msgstr "Factor" msgid "1 %s is the same as..." -msgstr "" +msgstr "1 %s is the same as..." msgid "Create QU conversion" -msgstr "" +msgstr "Create QU conversion" msgid "Default for QU" -msgstr "" +msgstr "Default for QU" msgid "Quantity unit from" -msgstr "" +msgstr "Quantity unit from" msgid "Quantity unit to" -msgstr "" +msgstr "Quantity unit to" msgid "" "This cannot be lower than %1$s and must be a valid number with max. %2$s " "decimal places" msgstr "" +"This cannot be lower than %1$s and must be a valid number with max. %2$s " +"decimal places" msgid "This cannot be equal to %s" -msgstr "" +msgstr "This cannot be equal to %s" msgid "This means 1 %1$s is the same as %2$s %3$s" -msgstr "" +msgstr "This means 1 %1$s is the same as %2$s %3$s" msgid "QU conversions" -msgstr "" +msgstr "QU conversions" msgid "Product overrides" -msgstr "" +msgstr "Product overrides" msgid "Override for product" -msgstr "" +msgstr "Override for product" msgid "This equals %1$s %2$s in stock" -msgstr "" +msgstr "This equals %1$s %2$s in stock" msgid "Edit QU conversion" -msgstr "" +msgstr "Edit QU conversion" msgid "An assignment type is required" -msgstr "" +msgstr "An assignment type is required" msgid "Assignment type" -msgstr "" +msgstr "Assignment type" msgid "" "This means the next execution of this chore is scheduled 1 day after the " "last execution" msgstr "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution" msgid "" "This means the next execution of this chore is scheduled 1 day after the " "last execution, but only for the weekdays selected below" msgstr "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution, but only for the weekdays selected below" msgid "This means the next execution of this chore is not scheduled" -msgstr "" +msgstr "This means the next execution of this chore is not scheduled" msgid "" "This means the next execution of this chore is scheduled on the below " "selected day of each month" msgstr "" +"This means the next execution of this chore is scheduled on the below " +"selected day of each month" msgid "" "This means the next execution of this chore will not be assigned to anyone" msgstr "" +"This means the next execution of this chore will not be assigned to anyone" msgid "" "This means the next execution of this chore will be assigned to the one who " "executed it least" msgstr "" +"This means the next execution of this chore will be assigned to the one who " +"executed it least" msgid "This means the next execution of this chore will be assigned randomly" -msgstr "" +msgstr "This means the next execution of this chore will be assigned randomly" msgid "" "This means the next execution of this chore will be assigned to the next one" " in alphabetical order" msgstr "" +"This means the next execution of this chore will be assigned to the next one" +" in alphabetical order" msgid "Assign to" -msgstr "" +msgstr "Assign to" msgid "This assignment type requires that at least one is assigned" -msgstr "" +msgstr "This assignment type requires that at least one is assigned" msgid "%s chore is assigned to me" msgid_plural "%s chores are assigned to me" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s chore is assigned to me" +msgstr[1] "%s chores are assigned to me" msgid "Assigned to me" -msgstr "" +msgstr "Assigned to me" msgid "assigned to %s" -msgstr "" +msgstr "assigned to %s" msgid "Filter by assignment" -msgstr "" +msgstr "Filter by assignment" msgid "Consume product on chore execution" -msgstr "" +msgstr "Consume product on chore execution" msgid "Are you sure to delete user field \"%s\"?" -msgstr "" +msgstr "Are you sure to delete user field \"%s\"?" msgid "Userentities" -msgstr "" +msgstr "Userentities" msgid "Create userentity" -msgstr "" +msgstr "Create userentity" msgid "Show in sidebar menu" -msgstr "" +msgstr "Show in sidebar menu" msgid "Edit userentity" -msgstr "" +msgstr "Edit userentity" msgid "Edit %s" -msgstr "" +msgstr "Edit %s" msgid "Create %s" -msgstr "" +msgstr "Create %s" msgid "Are you sure to delete this userobject?" -msgstr "" +msgstr "Are you sure to delete this userobject?" msgid "Icon CSS class" -msgstr "" +msgstr "Icon CSS class" msgid "For example" -msgstr "" +msgstr "For example" msgid "Configure fields" -msgstr "" +msgstr "Configure fields" msgid "Quantity unit plural form testing" -msgstr "" +msgstr "Quantity unit plural form testing" msgid "Result" -msgstr "" +msgstr "Result" msgid "Test plural forms" -msgstr "" +msgstr "Test plural forms" msgid "Scan a barcode" -msgstr "" +msgstr "Scan a barcode" msgid "Error while initializing the barcode scanning library" -msgstr "" +msgstr "Error while initializing the barcode scanning library" msgid "" "The resulting price of this ingredient will be multiplied by this factor" msgstr "" +"The resulting price of this ingredient will be multiplied by this factor" msgid "Price factor" -msgstr "" +msgstr "Price factor" msgid "Do you find grocy useful?" -msgstr "" +msgstr "Do you find grocy useful?" msgid "Say thanks" -msgstr "" +msgstr "Say thanks" msgid "Search for recipes containing this product" -msgstr "" +msgstr "Search for recipes containing this product" msgid "Add to shopping list" -msgstr "" +msgstr "Add to shopping list" msgid "Added %1$s of %2$s to the shopping list \"%3$s\"" -msgstr "" +msgstr "Added %1$s of %2$s to the shopping list \"%3$s\"" msgid "Output" -msgstr "" +msgstr "Output" msgid "Energy (kcal)" -msgstr "" +msgstr "Energy (kcal)" msgid "Per stock quantity unit" -msgstr "" +msgstr "Per stock quantity unit" msgid "Barcode scanner testing" -msgstr "" +msgstr "Barcode scanner testing" msgid "Expected barcode" -msgstr "" +msgstr "Expected barcode" msgid "Scan field" -msgstr "" +msgstr "Scan field" msgid "Scanned barcodes" -msgstr "" +msgstr "Scanned barcodes" msgid "Hit" -msgstr "" +msgstr "Hit" msgid "Miss" -msgstr "" +msgstr "Miss" msgid "Display recipe" -msgstr "" +msgstr "Display recipe" msgid "Accumulate sub products min. stock amount" -msgstr "" +msgstr "Accumulate sub products min. stock amount" msgid "" "If enabled, the min. stock amount of sub products will be accumulated into " "this product, means the sub product will never be \"missing\", only this " "product" msgstr "" +"If enabled, the min. stock amount of sub products will be accumulated into " +"this product, means the sub product will never be \"missing\", only this " +"product" msgid "Are you sure to remove this conversion?" -msgstr "" +msgstr "Are you sure to remove this conversion?" msgid "Unit price" -msgstr "" +msgstr "Unit price" msgid "Total price" -msgstr "" +msgstr "Total price" msgid "in %s and based on the purchase quantity unit" -msgstr "" +msgstr "in %s and based on the purchase quantity unit" msgid "Unlimited" -msgstr "" +msgstr "Unlimited" msgid "Clear" -msgstr "" +msgstr "Clear" msgid "Are you sure to remove the included recipe \"%s\"?" -msgstr "" +msgstr "Are you sure to remove the included recipe \"%s\"?" msgid "Period interval" -msgstr "" +msgstr "Period interval" msgid "" "This means the next execution of this chore should only be scheduled every " "%s days" msgstr "" +"This means the next execution of this chore should only be scheduled every " +"%s days" msgid "" "This means the next execution of this chore should only be scheduled every " "%s weeks" msgstr "" +"This means the next execution of this chore should only be scheduled every " +"%s weeks" msgid "" "This means the next execution of this chore should only be scheduled every " "%s months" msgstr "" +"This means the next execution of this chore should only be scheduled every " +"%s months" msgid "" "This means the next execution of this chore is scheduled 1 year after the " "last execution" msgstr "" +"This means the next execution of this chore is scheduled 1 year after the " +"last execution" msgid "" "This means the next execution of this chore should only be scheduled every " "%s years" msgstr "" +"This means the next execution of this chore should only be scheduled every " +"%s years" + +msgid "Transfer" +msgstr "Transfer" + +msgid "From location" +msgstr "From location" + +msgid "To location" +msgstr "To location" + +msgid "There are no units available at this location" +msgstr "There are no units available at this location" + +msgid "Amount: %1$s; Expires on %2$s; Bought on %3$s" +msgstr "Amount: %1$s; Expires on %2$s; Bought on %3$s" + +msgid "Transfered %1$s of %2$s from %3$s to %4$s" +msgstr "Transfered %1$s of %2$s from %3$s to %4$s" + +msgid "Show stock entries" +msgstr "Show stock entries" + +msgid "Stock entries" +msgstr "Stock entries" + +msgid "Best before date" +msgstr "Best before date" + +msgid "Purchased date" +msgstr "Purchased date" + +msgid "Consume all %s for this stock entry" +msgstr "Consume all %s for this stock entry" + +msgid "The amount cannot be lower than %1$s" +msgstr "The amount cannot be lower than %1$s" + +msgid "Stock entry successfully updated" +msgstr "Stock entry successfully updated" + +msgid "Edit stock entry" +msgstr "Edit stock entry" + +msgid "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" +msgstr "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" + +msgid "Keep screen on" +msgstr "Keep screen on" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "Keep screen on while displaying a \"fullscreen-card\"" + +msgid "A purchased date is required" +msgstr "" + +msgid "" +"When a product is selected, one unit (per serving in purchase quantity unit)" +" will be added to stock on consuming this recipe" +msgstr "" + +msgid "Produces product" +msgstr "" + +msgid "This booking cannot be undone" +msgstr "" + +msgid "Booking does not exist or was already undone" +msgstr "" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "" + +msgid "Add note" +msgstr "" + +msgid "Add note to %s" +msgstr "" + +msgid "per day" +msgstr "" + +msgid "Compact view" +msgstr "" + +msgid "Normal view" +msgstr "" + +msgid "Only undone items" +msgstr "" + +msgid "Add product" +msgstr "" + +msgid "Add product to %s" +msgstr "" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" + +msgid "Meal plan recipe" +msgstr "" + +msgid "Meal plan note" +msgstr "" + +msgid "Meal plan product" +msgstr "" + +msgid "Scan mode" +msgstr "" + +msgid "on" +msgstr "" + +msgid "off" +msgstr "" + +msgid "" +"Scan mode is on but not all required fields could be populated automatically" +msgstr "" + +msgid "Is freezer" +msgstr "" + +msgid "" +"When moving products from/to a freezer location, the products best before " +"date is automatically adjusted according to the product settings" +msgstr "" + +msgid "" +"On moving this product to a freezer location (so when freezing it), the best" +" before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after freezing" +msgstr "" + +msgid "" +"On moving this product from a freezer location (so when thawing it), the " +"best before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after thawing" +msgstr "" + +msgid "This cannot be the same as the \"From\" location" +msgstr "" + +msgid "Thawed" +msgstr "" + +msgid "Frozen" +msgstr "" diff --git a/localization/en_GB/userfield_types.po b/localization/en_GB/userfield_types.po index 3384e862..d159f9b3 100644 --- a/localization/en_GB/userfield_types.po +++ b/localization/en_GB/userfield_types.po @@ -1,3 +1,5 @@ +# Translators: +# Jonathan Adams , 2020 # msgid "" msgstr "" @@ -5,6 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:43+0000\n" +"Last-Translator: Jonathan Adams , 2020\n" "Language-Team: English (United Kingdom) (https://www.transifex.com/grocy/teams/93189/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,31 +17,31 @@ msgstr "" "X-Domain: grocy/userfield_types\n" msgid "text-single-line" -msgstr "" +msgstr "text-single-line" msgid "text-multi-line" -msgstr "" +msgstr "text-multi-line" msgid "number-integral" -msgstr "" +msgstr "number-integral" msgid "number-decimal" -msgstr "" +msgstr "number-decimal" msgid "date" -msgstr "" +msgstr "date" msgid "datetime" -msgstr "" +msgstr "datetime" msgid "checkbox" -msgstr "" +msgstr "checkbox" msgid "preset-list" -msgstr "" +msgstr "preset-list" msgid "preset-checklist" -msgstr "" +msgstr "preset-checklist" msgid "link" -msgstr "" +msgstr "link" diff --git a/localization/es/demo_data.po b/localization/es/demo_data.po index aebd8573..2e0d0025 100644 --- a/localization/es/demo_data.po +++ b/localization/es/demo_data.po @@ -162,9 +162,6 @@ msgstr "Alemán" msgid "Italian" msgstr "Italiano" -msgid "Demo in different language" -msgstr "Demo en otro idioma" - msgid "This is the note content of the recipe ingredient" msgstr "Este es el contenido de la nota del ingrediente de la receta" @@ -315,3 +312,36 @@ msgstr "" msgid "Dutch" msgstr "" + +msgid "Norwegian" +msgstr "" + +msgid "Demo" +msgstr "" + +msgid "Stable version" +msgstr "" + +msgid "Preview version" +msgstr "" + +msgid "current release" +msgstr "" + +msgid "not yet released" +msgstr "" + +msgid "Portuguese (Brazil)" +msgstr "" + +msgid "This is a note" +msgstr "" + +msgid "Freezer" +msgstr "" + +msgid "Hungarian" +msgstr "" + +msgid "Slovak" +msgstr "" diff --git a/localization/fr/chore_period_types.po b/localization/fr/chore_period_types.po index eb310cef..c0fd3160 100644 --- a/localization/fr/chore_period_types.po +++ b/localization/fr/chore_period_types.po @@ -1,6 +1,7 @@ # Translators: # Bernd Bestel , 2019 # Alex Deneuvillers , 2019 +# Antonin DESFONTAINES , 2019 # msgid "" msgstr "" @@ -8,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Alex Deneuvillers , 2019\n" +"Last-Translator: Antonin DESFONTAINES , 2019\n" "Language-Team: French (https://www.transifex.com/grocy/teams/93189/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,3 +32,6 @@ msgstr "Hebdomadaire" msgid "monthly" msgstr "Mensuelle" + +msgid "yearly" +msgstr "Annuelle" diff --git a/localization/fr/demo_data.po b/localization/fr/demo_data.po index 4de2bbc2..c8dd6ebe 100644 --- a/localization/fr/demo_data.po +++ b/localization/fr/demo_data.po @@ -2,6 +2,8 @@ # Cedric Octave , 2019 # bigoudo, 2019 # Matthieu K, 2019 +# Antonin DESFONTAINES , 2019 +# Zkryvix , 2020 # msgid "" msgstr "" @@ -9,7 +11,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Matthieu K, 2019\n" +"Last-Translator: Zkryvix , 2020\n" "Language-Team: French (https://www.transifex.com/grocy/teams/93189/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -145,7 +147,7 @@ msgid "Minced meat" msgstr "Viande hachée" msgid "Pizza" -msgstr "PIzza" +msgstr "Pizza" msgid "Spaghetti bolognese" msgstr "Spaghetti bolognaise" @@ -162,9 +164,6 @@ msgstr "Allemand" msgid "Italian" msgstr "Italien" -msgid "Demo in different language" -msgstr "Démo dans une langue différente" - msgid "This is the note content of the recipe ingredient" msgstr "Ceci est le contenu de la note concernant l'ingrédient de la recette" @@ -224,7 +223,7 @@ msgid "Refrigerated products" msgstr "Produits réfrigérés" msgid "Coffee machine" -msgstr "Machie à café" +msgstr "Machine à café" msgid "Dishwasher" msgstr "Lave-vaisselle" @@ -287,27 +286,66 @@ msgid "Polish" msgstr "Polonais" msgid "Milk Chocolate" -msgstr "" +msgstr "Chocolat au lait" msgid "Dark Chocolate" -msgstr "" +msgstr "Chocolat noir" msgid "Slice" msgid_plural "Slices" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Tranche" +msgstr[1] "Tranches" msgid "Example userentity" -msgstr "" +msgstr "Exemple entité utilisateur" msgid "This is an example user entity..." -msgstr "" +msgstr "Ceci est un exemple d'entité utilisateur" msgid "Custom field" -msgstr "" +msgstr "Champ personnalisé" msgid "Example field value..." -msgstr "" +msgstr "Exemple de valeur de champ..." msgid "Waffle rolls" +msgstr "Gaufrettes roulées" + +msgid "Danish" +msgstr "Danois" + +msgid "Dutch" +msgstr "Néerlandais" + +msgid "Norwegian" +msgstr "Norvégien" + +msgid "Demo" +msgstr "Démo" + +msgid "Stable version" +msgstr "Version stable" + +msgid "Preview version" +msgstr "Version d'aperçu" + +msgid "current release" +msgstr "Version actuelle" + +msgid "not yet released" +msgstr "pas encore publiée" + +msgid "Portuguese (Brazil)" +msgstr "Portugais (Brésil)" + +msgid "This is a note" +msgstr "" + +msgid "Freezer" +msgstr "Congélateur" + +msgid "Hungarian" +msgstr "" + +msgid "Slovak" msgstr "" diff --git a/localization/fr/stock_transaction_types.po b/localization/fr/stock_transaction_types.po index 424d1451..a0941271 100644 --- a/localization/fr/stock_transaction_types.po +++ b/localization/fr/stock_transaction_types.po @@ -1,5 +1,7 @@ # Translators: # Bernd Bestel , 2019 +# Guillaume RICHARD , 2020 +# Zkryvix , 2020 # msgid "" msgstr "" @@ -7,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Bernd Bestel , 2019\n" +"Last-Translator: Zkryvix , 2020\n" "Language-Team: French (https://www.transifex.com/grocy/teams/93189/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +21,12 @@ msgstr "" msgid "purchase" msgstr "Achat" +msgid "transfer_from" +msgstr "transféré depuis" + +msgid "transfer_to" +msgstr "transféré à" + msgid "consume" msgstr "Consommation" @@ -27,3 +35,12 @@ msgstr "Correction d'inventaire" msgid "product-opened" msgstr "Produit ouvert" + +msgid "stock-edit-old" +msgstr "Éditer l'ancien stock" + +msgid "stock-edit-new" +msgstr "Éditer le nouveau stock" + +msgid "self-production" +msgstr "Autoproduction" diff --git a/localization/fr/strings.po b/localization/fr/strings.po index 3baffb66..b63c3e9b 100644 --- a/localization/fr/strings.po +++ b/localization/fr/strings.po @@ -5,7 +5,14 @@ # Cedric Octave , 2019 # Hydreliox Hydreliox , 2019 # Matthieu K, 2019 +# Jérémy Tisserand , 2019 # Mathieu Fortin , 2019 +# Pierre-Emmanuel Colas , 2019 +# Antonin DESFONTAINES , 2019 +# Adrien Guillement , 2019 +# Matthias Baumgartner , 2019 +# Guillaume RICHARD , 2020 +# Zkryvix , 2020 # msgid "" msgstr "" @@ -13,7 +20,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Mathieu Fortin , 2019\n" +"Last-Translator: Zkryvix , 2020\n" "Language-Team: French (https://www.transifex.com/grocy/teams/93189/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,7 +73,7 @@ msgid "Chores overview" msgstr "Aperçu des corvées" msgid "Batteries overview" -msgstr "Piles" +msgstr "Aperçu des piles" msgid "Purchase" msgstr "Achat" @@ -87,7 +94,7 @@ msgid "Battery tracking" msgstr "Suivi des piles" msgid "Locations" -msgstr "Emplacements" +msgstr "Il n'y a pas d'unités disponibles à cet endroit." msgid "Quantity units" msgstr "Formats" @@ -96,7 +103,7 @@ msgid "Chores" msgstr "Corvées" msgid "Batteries" -msgstr "Batteries" +msgstr "Piles" msgid "Chore" msgstr "Corvée" @@ -165,7 +172,7 @@ msgid "Tracked count" msgstr "Nombre de réalisations" msgid "Battery overview" -msgstr "Aperçu des batteries" +msgstr "Aperçu des piles" msgid "Charge cycles count" msgstr "Nombre de charges" @@ -243,10 +250,10 @@ msgid "Used in" msgstr "Utilisé dans" msgid "Create battery" -msgstr "Créer une batterie" +msgstr "Créer une pile" msgid "Edit battery" -msgstr "Modifier une batterie" +msgstr "Modifier une pile" msgid "Edit chore" msgstr "Modifier une corvée" @@ -368,14 +375,14 @@ msgid "This means %s will be removed from stock" msgstr "%s sera supprimé du stock" msgid "" -"This means it is estimated that a new execution of this chore is tracked %s " -"days after the last was tracked" +"This means the next execution of this chore is scheduled %s days after the " +"last execution" msgstr "" -"La prochaine exécution de cette corvée sera programmée %s jours après sa " +"La prochaine exécution de cette corvée sera programmée %s jours après la " "dernière exécution" msgid "Removed %1$s of %2$s from stock" -msgstr "%1$senlevé du stock de%2$s " +msgstr "%1$s enlevée du stock de%2$s " msgid "About grocy" msgstr "À propos de grocy" @@ -426,7 +433,7 @@ msgid "You have to select a chore" msgstr "Vous devez sélectionner une corvée" msgid "You have to select a battery" -msgstr "Vous devez sélectionner une batterie" +msgstr "Vous devez sélectionner une pile" msgid "A name is required" msgstr "Un nom est requis" @@ -790,7 +797,7 @@ msgid "View settings" msgstr "Voir les paramètres" msgid "Auto reload on external changes" -msgstr "Mettre à jour automatiquement lors d'un changement externe" +msgstr "MàJ automatique lors de changements externe" msgid "Enable night mode" msgstr "Activer le mode nuit" @@ -926,7 +933,7 @@ msgid "Batteries journal" msgstr "Journal des batteries" msgid "Filter by battery" -msgstr "Filtrer par batterie" +msgstr "Filtrer par pile" msgid "Undo charge cycle" msgstr "Annuler le cycle de charge" @@ -976,12 +983,9 @@ msgid "Mark %1$s of %2$s as open" msgstr "Indiquer%1$s de %2$s comme ouvert" msgid "" -"When a product was marked as opened, the best before date will be replaced " -"by today + this amount of days (a value of 0 disables this)" +"When this product was marked as opened, the best before date will be " +"replaced by today + this amount of days (a value of 0 disables this)" msgstr "" -"Quand un produit est marqué comme ouvert, la date de péremption sera " -"remplacée par la date du jour + ce nombre de jours (une valeur de 0 " -"désactive ce changement)" msgid "Default best before days after opened" msgstr "Date de péremption en jours par défaut après ouverture" @@ -992,9 +996,6 @@ msgstr "Indiqué%1$s de %2$s comme ouvert" msgid "Mark as opened" msgstr "Indiquer comme ouvert" -msgid "Expires on %1$s; Bought on %2$s" -msgstr "Se périmera le%1$s; Acheté le %2$s" - msgid "Not opened" msgstr "Non ouvert" @@ -1139,10 +1140,10 @@ msgid "Journal for this chore" msgstr "Journal de la corvée" msgid "Show battery details" -msgstr "Voir les détails" +msgstr "Voir les détails de la pile" msgid "Journal for this battery" -msgstr "Journal individuel" +msgstr "Journal de cette pile" msgid "System info" msgstr "Informations système" @@ -1238,7 +1239,7 @@ msgid "Sunday" msgstr "Dimanche" msgid "Configure userfields" -msgstr "Configurer les attributs personalisés" +msgstr "Configurer les attributs personnalisés" msgid "Userfields" msgstr "Attributs personalisés" @@ -1308,6 +1309,9 @@ msgstr "Pas assez en stock" msgid "Expiring soon days" msgstr "Jours avant péremption" +msgid "Default location" +msgstr "Emplacement par défaut" + msgid "Default amount for purchase" msgstr "Quantité ajoutée par défaut lors d'un achat" @@ -1367,25 +1371,532 @@ msgid "Products" msgstr "Produits" msgid "Marked task %s as completed on %s" -msgstr "" +msgstr "%s tâche marquée complétée sur %s" msgid "Booking has subsequent dependent bookings, undo not possible" msgstr "La réservation a des dépendances, impossible de revenir en arrière" msgid "per serving" -msgstr "" +msgstr "par portion" msgid "Never" -msgstr "" +msgstr "Jamais" msgid "Today" -msgstr "" +msgstr "Aujourd'hui" msgid "Consume %1$s of %2$s as spoiled" -msgstr "" +msgstr "Consommer %1$s de %2$s comme périmée" msgid "Not all ingredients of recipe \"%s\" are in stock, nothing removed" msgstr "" +"Des ingrédients de la recette \"%s\" sont manquants,\n" +"rien n'est retiré" msgid "Undo task \"%s\"" +msgstr "Annuler tâche \"%s\"" + +msgid "Due date rollover" +msgstr "Report de la date d'échéance" + +msgid "" +"When enabled the chore can never be overdue, the due date will shift forward" +" each day when due" +msgstr "" +"Si activé la corvée ne sera jamais due, la date d'échéance sera avancée " +"quand atteinte." + +msgid "Location Content Sheet" +msgstr "Emplacement du stock" + +msgid "Print" +msgstr "Imprimer" + +msgid "all locations" +msgstr "Tous les emplacements" + +msgid "" +"Here you can print a page per location with the current stock, maybe to hang" +" it there and note the consumed things on it." +msgstr "" +"Ici vous pouvez imprimer une fiche du stock actuel classé par emplacement, " +"vous pouvez par exemple l'accrocher et noter les produits qui ont été " +"consommés dessus." + +msgid "this location" +msgstr "Cet emplacement" + +msgid "Consumend amount" +msgstr "Quantité consommé" + +msgid "Time of printing" +msgstr "Temps d'impression" + +msgid "Are you sure to delete equipment \"%s\"?" +msgstr "Êtes-vous certain de vouloir effacer l'équipement \"%s\"?" + +msgid "Parent product" +msgstr "Produit parent" + +msgid "" +"Not possible because this product is already used as a parent product in " +"another product" +msgstr "" +"Impossible, ce produit est déjà assigné comme parent sur un autre produit" + +msgid "Default conversions" +msgstr "Conversions par défaut" + +msgid "Factor" +msgstr "Facteur" + +msgid "1 %s is the same as..." +msgstr "1 %s corresponds aussi à..." + +msgid "Create QU conversion" +msgstr "Créer une conversion d'UQ" + +msgid "Default for QU" +msgstr "Défaut pour l'unité de quantité" + +msgid "Quantity unit from" +msgstr "De l'unité de quantité" + +msgid "Quantity unit to" +msgstr "À l'unité de quantité" + +msgid "" +"This cannot be lower than %1$s and must be a valid number with max. %2$s " +"decimal places" +msgstr "" +"Cela ne peut être inférieur à %1$s et doit être un nombre valide avec " +"maximum. %2$s décimales." + +msgid "This cannot be equal to %s" +msgstr "Ne peut être égale à %s" + +msgid "This means 1 %1$s is the same as %2$s %3$s" +msgstr "Signifie que 1 %1$s corresponds aussi à %2$s %3$s" + +msgid "QU conversions" +msgstr "Conversions d'UQ" + +msgid "Product overrides" +msgstr "Règles du produit" + +msgid "Override for product" +msgstr "Règle pour le produit" + +msgid "This equals %1$s %2$s in stock" +msgstr "Égal à %1$s%2$s en stock" + +msgid "Edit QU conversion" +msgstr "Éditer la conversion d'UQ" + +msgid "An assignment type is required" +msgstr "Un type de tâche est requis" + +msgid "Assignment type" +msgstr "Type de tâche" + +msgid "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution" +msgstr "" +"La prochaine exécution de cette corvée sera programmé 1 jour après la " +"dernière exécution" + +msgid "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution, but only for the weekdays selected below" +msgstr "" +"Signifie que la prochaine exécution de cette corvée est programmé 1 jour " +"après la dernière exécution, mais uniquement pour les jours sélectionnés ci-" +"dessous" + +msgid "This means the next execution of this chore is not scheduled" +msgstr "Cette corvée n'a pas d'exécution de programmée. " + +msgid "" +"This means the next execution of this chore is scheduled on the below " +"selected day of each month" +msgstr "" +"Signifie que la prochaine exécution de cette corvée sera programmé à la date" +" sélectionnée ci-dessous chaque mois" + +msgid "" +"This means the next execution of this chore will not be assigned to anyone" +msgstr "" +"Signifie que la prochaine exécution de cette corvée ne sera assigné à " +"personne" + +msgid "" +"This means the next execution of this chore will be assigned to the one who " +"executed it least" +msgstr "" +"Signifie que la prochaine exécution de cette corvée sera assignée à celui " +"qui l'a effectué en dernier" + +msgid "This means the next execution of this chore will be assigned randomly" +msgstr "" +"Signifie que la prochaine exécution de cette corvée sera assignée " +"aléatoirement" + +msgid "" +"This means the next execution of this chore will be assigned to the next one" +" in alphabetical order" +msgstr "" +"Signifie que la prochaine exécution de cette corvée sera assigné au prochain" +" par ordre alphabétique" + +msgid "Assign to" +msgstr "Assigné à" + +msgid "This assignment type requires that at least one is assigned" +msgstr "Ce type de tâche nécessite au moins une personne assignée" + +msgid "%s chore is assigned to me" +msgid_plural "%s chores are assigned to me" +msgstr[0] "%s corvée m'est assignée" +msgstr[1] "%s corvées me sont assignées" + +msgid "Assigned to me" +msgstr "Assigné à moi" + +msgid "assigned to %s" +msgstr "assigné à %s" + +msgid "Filter by assignment" +msgstr "Filtrer par tâche" + +msgid "Consume product on chore execution" +msgstr "Consommer un produit lors de l'exécution de la corvée" + +msgid "Are you sure to delete user field \"%s\"?" +msgstr "Êtes-vous sûr de vouloir supprimer le champ utilisateur \"%s\" ?" + +msgid "Userentities" +msgstr "Entités utilisateur" + +msgid "Create userentity" +msgstr "Créer une entité utilisateur" + +msgid "Show in sidebar menu" +msgstr "Afficher dans le menu latérale" + +msgid "Edit userentity" +msgstr "Éditer l'entité utilisateur" + +msgid "Edit %s" +msgstr "Éditer %s" + +msgid "Create %s" +msgstr "Créer %s" + +msgid "Are you sure to delete this userobject?" +msgstr "Êtes-vous sûr de vouloir supprimer cet objet utilisateur ?" + +msgid "Icon CSS class" +msgstr "Classe CSS de l'icône" + +msgid "For example" +msgstr "Par exemple" + +msgid "Configure fields" +msgstr "Configurer les champs" + +msgid "Quantity unit plural form testing" +msgstr "Test de la forme pluriel de l'unité de quantité" + +msgid "Result" +msgstr "Résultat" + +msgid "Test plural forms" +msgstr "Tester les formes pluriel" + +msgid "Scan a barcode" +msgstr "Scanner un code barre" + +msgid "Error while initializing the barcode scanning library" +msgstr "Erreur lors de l'initialisation de la librairie de scan de code barre" + +msgid "" +"The resulting price of this ingredient will be multiplied by this factor" +msgstr "Le prix final de cet ingrédient sera multiplié par ce facteur" + +msgid "Price factor" +msgstr "Facteur de prix" + +msgid "Do you find grocy useful?" +msgstr "Vous trouvez grocy utile ?" + +msgid "Say thanks" +msgstr "Remercier" + +msgid "Search for recipes containing this product" +msgstr "Chercher des recettes contenant ce produit" + +msgid "Add to shopping list" +msgstr "Ajouter à la liste de courses" + +msgid "Added %1$s of %2$s to the shopping list \"%3$s\"" +msgstr "%1$s de %2$s ajouté à la liste de course \"%3$s\"" + +msgid "Output" +msgstr "Sortie" + +msgid "Energy (kcal)" +msgstr "Énergie (kcal)" + +msgid "Per stock quantity unit" +msgstr "Unité de quantité par stock" + +msgid "Barcode scanner testing" +msgstr "Test du scanner de code barre" + +msgid "Expected barcode" +msgstr "Code barre attendu" + +msgid "Scan field" +msgstr "Champ du scan" + +msgid "Scanned barcodes" +msgstr "Codes barre scanné" + +msgid "Hit" +msgstr "Touché" + +msgid "Miss" +msgstr "Raté" + +msgid "Display recipe" +msgstr "Afficher la recette" + +msgid "Accumulate sub products min. stock amount" +msgstr "Accumuler le stock minimal des sous produits" + +msgid "" +"If enabled, the min. stock amount of sub products will be accumulated into " +"this product, means the sub product will never be \"missing\", only this " +"product" +msgstr "" +"Si activé, la somme du stock minimal des sous produits sera accumulé sur ce " +"produit, signifiant que le sous produit ne sera jamais \"en manque\", " +"seulement ce produit" + +msgid "Are you sure to remove this conversion?" +msgstr "Êtes-vous sûr de vouloir supprimer cette conversion ?" + +msgid "Unit price" +msgstr "Prix unitaire" + +msgid "Total price" +msgstr "Prix total" + +msgid "in %s and based on the purchase quantity unit" +msgstr "dans %s et basé sur la quantité unitaire d'achat" + +msgid "Unlimited" +msgstr "Illimité" + +msgid "Clear" +msgstr "Vider" + +msgid "Are you sure to remove the included recipe \"%s\"?" +msgstr "Êtes-vous sûr de vouloir supprimer la recette incluse \"%s\"?" + +msgid "Period interval" +msgstr "Intervalle de temps" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s days" +msgstr "" +"La prochaine exécution de cette corvée ne doit être uniquement programmée " +"que tous les %s jours" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s weeks" +msgstr "" +"La prochaine exécution de cette corvée ne doit être uniquement programmée " +"que toutes les %s semaines" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s months" +msgstr "" +"La prochaine exécution de cette corvée ne doit être uniquement programmée " +"que tous les %s mois" + +msgid "" +"This means the next execution of this chore is scheduled 1 year after the " +"last execution" +msgstr "" +"La prochaine exécution de cette corvée sera programmé 1 an après la dernière" +" exécution" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s years" +msgstr "" +"Signifie que la prochaine exécution de cette corvée ne doit uniquement être " +"programmé que tous les %s ans" + +msgid "Transfer" +msgstr "Transfert" + +msgid "From location" +msgstr "De" + +msgid "To location" +msgstr "A" + +msgid "There are no units available at this location" +msgstr "Il n'y a pas d'unité disponible à cet endroit." + +msgid "Amount: %1$s; Expires on %2$s; Bought on %3$s" +msgstr "Quantité : %1$s; Expire le %2$s; Acheté le %3$s" + +msgid "Transfered %1$s of %2$s from %3$s to %4$s" +msgstr "A transferé%1$sde %2$svenant de %3$s à %4$s" + +msgid "Show stock entries" +msgstr "" + +msgid "Stock entries" +msgstr "" + +msgid "Best before date" +msgstr "A consommer de préférence avant le" + +msgid "Purchased date" +msgstr "Date d'achat" + +msgid "Consume all %s for this stock entry" +msgstr "" + +msgid "The amount cannot be lower than %1$s" +msgstr "La quantité ne peut être inférieure à %s" + +msgid "Stock entry successfully updated" +msgstr "" + +msgid "Edit stock entry" +msgstr "" + +msgid "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" +msgstr "" + +msgid "Keep screen on" +msgstr "Garder l'écran allumé" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "" + +msgid "A purchased date is required" +msgstr "" + +msgid "" +"When a product is selected, one unit (per serving in purchase quantity unit)" +" will be added to stock on consuming this recipe" +msgstr "" + +msgid "Produces product" +msgstr "" + +msgid "This booking cannot be undone" +msgstr "" + +msgid "Booking does not exist or was already undone" +msgstr "" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "" + +msgid "Add note" +msgstr "" + +msgid "Add note to %s" +msgstr "" + +msgid "per day" +msgstr "" + +msgid "Compact view" +msgstr "" + +msgid "Normal view" +msgstr "" + +msgid "Only undone items" +msgstr "" + +msgid "Add product" +msgstr "" + +msgid "Add product to %s" +msgstr "" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" + +msgid "Meal plan recipe" +msgstr "Recette des prévisions de repas" + +msgid "Meal plan note" +msgstr "" + +msgid "Meal plan product" +msgstr "Produit des prévisions de repas" + +msgid "Scan mode" +msgstr "" + +msgid "on" +msgstr "Allumé" + +msgid "off" +msgstr "Éteint" + +msgid "" +"Scan mode is on but not all required fields could be populated automatically" +msgstr "" + +msgid "Is freezer" +msgstr "" + +msgid "" +"When moving products from/to a freezer location, the products best before " +"date is automatically adjusted according to the product settings" +msgstr "" + +msgid "" +"On moving this product to a freezer location (so when freezing it), the best" +" before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after freezing" +msgstr "" + +msgid "" +"On moving this product from a freezer location (so when thawing it), the " +"best before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after thawing" +msgstr "" + +msgid "This cannot be the same as the \"From\" location" +msgstr "" + +msgid "Thawed" +msgstr "" + +msgid "Frozen" +msgstr "Congelé" + +msgid "Are you sure to delete userentity \"%s\"?" msgstr "" diff --git a/localization/fr/userfield_types.po b/localization/fr/userfield_types.po index 0fccc4d6..b08558d3 100644 --- a/localization/fr/userfield_types.po +++ b/localization/fr/userfield_types.po @@ -1,5 +1,6 @@ # Translators: # Hydreliox Hydreliox , 2019 +# Antonin DESFONTAINES , 2019 # msgid "" msgstr "" @@ -7,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:43+0000\n" -"Last-Translator: Hydreliox Hydreliox , 2019\n" +"Last-Translator: Antonin DESFONTAINES , 2019\n" "Language-Team: French (https://www.transifex.com/grocy/teams/93189/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,3 +40,9 @@ msgstr "case à cocher" msgid "preset-list" msgstr "liste prédéfinie" + +msgid "preset-checklist" +msgstr "liste multiple prédéfinie" + +msgid "link" +msgstr "lien" diff --git a/localization/hu/chore_assignment_types.po b/localization/hu/chore_assignment_types.po new file mode 100644 index 00000000..19c119e5 --- /dev/null +++ b/localization/hu/chore_assignment_types.po @@ -0,0 +1,30 @@ +# Translators: +# Márk Kökény , 2019 +# Ádám Kovács , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-09-17 10:45+0000\n" +"Last-Translator: Ádám Kovács , 2019\n" +"Language-Team: Hungarian (https://www.transifex.com/grocy/teams/93189/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Domain: grocy/chore_assignment_types\n" + +msgid "no-assignment" +msgstr "nincs-hozzárendelés" + +msgid "who-least-did-first" +msgstr "ki-legkevésbé-csinálta-először" + +msgid "random" +msgstr "véletlen" + +msgid "in-alphabetical-order" +msgstr "ABC sorrendben" diff --git a/localization/hu/chore_period_types.po b/localization/hu/chore_period_types.po new file mode 100644 index 00000000..1d283549 --- /dev/null +++ b/localization/hu/chore_period_types.po @@ -0,0 +1,35 @@ +# Translators: +# Ádám Kovács , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Ádám Kovács , 2019\n" +"Language-Team: Hungarian (https://www.transifex.com/grocy/teams/93189/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Domain: grocy/chore_types\n" + +msgid "manually" +msgstr "manuálisan" + +msgid "dynamic-regular" +msgstr "változó gyakorisággal" + +msgid "daily" +msgstr "naponta" + +msgid "weekly" +msgstr "hetente" + +msgid "monthly" +msgstr "havonta" + +msgid "yearly" +msgstr "évente" diff --git a/localization/hu/component_translations.po b/localization/hu/component_translations.po new file mode 100644 index 00000000..7cfcc7d5 --- /dev/null +++ b/localization/hu/component_translations.po @@ -0,0 +1,52 @@ +# Translators: +# Bernd Bestel , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Bernd Bestel , 2020\n" +"Language-Team: Hungarian (https://www.transifex.com/grocy/teams/93189/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Domain: grocy/component_translations\n" + +msgid "timeago_locale" +msgstr "hu" + +msgid "timeago_nan" +msgstr "NaN éve" + +msgid "moment_locale" +msgstr "hu" + +msgid "datatables_localization" +msgstr "" +"{\"sEmptyTable\":\"Nincs rendelkezésre álló adat\",\"sInfo\":\"Találatok: " +"_START_ - _END_ Összesen: _TOTAL_\",\"sInfoEmpty\":\"Nulla " +"találat\",\"sInfoFiltered\":\"(_MAX_ összes rekord közül " +"szűrve)\",\"sInfoPostFix\":\"\",\"sInfoThousands\":\" " +"\",\"sLengthMenu\":\"_MENU_ találat " +"oldalanként\",\"sLoadingRecords\":\"Betöltés...\",\"sProcessing\":\"Feldolgozás...\",\"sSearch\":\"Keresés:\",\"sZeroRecords\":\"Nincs" +" a keresésnek megfelelő " +"találat\",\"oPaginate\":{\"sFirst\":\"Első\",\"sPrevious\":\"Előző\",\"sNext\":\"Következő\",\"sLast\":\"Utolsó\"},\"oAria\":{\"sSortAscending\":\":" +" aktiválja a növekvő rendezéshez\",\"sSortDescending\":\": aktiválja a " +"csökkenő rendezéshez\"},\"select\":{\"rows\":{\"0\":\"\",\"1\":\"1 sor " +"kiválasztva\",\"_\":\"%d sor " +"kiválasztva\"}},\"buttons\":{\"print\":\"Nyomtatás\",\"colvis\":\"Oszlopok\",\"copy\":\"Másolás\",\"copyTitle\":\"Vágólapra" +" másolás\",\"copySuccess\":{\"1\":\"1 sor másolva\",\"_\":\"%d sor " +"másolva\"}}}" + +msgid "summernote_locale" +msgstr "hu-HU" + +msgid "fullcalendar_locale" +msgstr "hu" + +msgid "bootstrap-select_locale" +msgstr "hu_HU" diff --git a/localization/hu/demo_data.po b/localization/hu/demo_data.po new file mode 100644 index 00000000..0b68886c --- /dev/null +++ b/localization/hu/demo_data.po @@ -0,0 +1,348 @@ +# Translators: +# Richard Szolár , 2019 +# Márk Kökény , 2019 +# Bernd Bestel , 2020 +# Gábor Szellő , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Gábor Szellő , 2020\n" +"Language-Team: Hungarian (https://www.transifex.com/grocy/teams/93189/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Domain: grocy/demo_data\n" + +msgid "Cookies" +msgstr "Keksz" + +msgid "Chocolate" +msgstr "Csokoládé" + +msgid "Pantry" +msgstr "Éléskamra" + +msgid "Candy cupboard" +msgstr "Édességszekrény" + +msgid "Tinned food cupboard" +msgstr "Konzverves szekrény" + +msgid "Fridge" +msgstr "Hűtő" + +msgid "Piece" +msgid_plural "Pieces" +msgstr[0] "Darab" +msgstr[1] "Darab" + +msgid "Pack" +msgid_plural "Packs" +msgstr[0] "Csomag" +msgstr[1] "Csomag" + +msgid "Glass" +msgid_plural "Glasses" +msgstr[0] "Üveg" +msgstr[1] "Üveg" + +msgid "Tin" +msgid_plural "Tins" +msgstr[0] "Konzerv" +msgstr[1] "Konzerv" + +msgid "Can" +msgid_plural "Cans" +msgstr[0] "Képes" +msgstr[1] "Kancsó" + +msgid "Bunch" +msgid_plural "Bunches" +msgstr[0] "Csokor" +msgstr[1] "Csokor" + +msgid "Gummy bears" +msgstr "Gumimaci" + +msgid "Crisps" +msgstr "Ropogtatnivaló" + +msgid "Eggs" +msgstr "Tojás" + +msgid "Noodles" +msgstr "Tészta" + +msgid "Pickles" +msgstr "Savanyúság" + +msgid "Gulash soup" +msgstr "Gulyásleves" + +msgid "Yogurt" +msgstr "Joghurt" + +msgid "Cheese" +msgstr "Sajt" + +msgid "Cold cuts" +msgstr "Felvágott" + +msgid "Paprika" +msgstr "Paprika" + +msgid "Cucumber" +msgstr "Uborka" + +msgid "Radish" +msgstr "Retek" + +msgid "Tomato" +msgstr "Paradicsom" + +msgid "Changed towels in the bathroom" +msgstr "Törölközők cseréje a fürdőszobában" + +msgid "Cleaned the kitchen floor" +msgstr "Konyhapadló felmosása" + +msgid "Warranty ends" +msgstr "Garancia lejár" + +msgid "TV remote control" +msgstr "TV távirányító" + +msgid "Alarm clock" +msgstr "Ébresztőóra" + +msgid "Heat remote control" +msgstr "Termosztát" + +msgid "Lawn mowed in the garden" +msgstr "Fűnyírás a kertben" + +msgid "Some good snacks" +msgstr "Néhány jó kis nasi" + +msgid "Pizza dough" +msgstr "Pizzatekercs" + +msgid "Sieved tomatoes" +msgstr "Paradicsompüré" + +msgid "Salami" +msgstr "Szalámi" + +msgid "Toast" +msgstr "Toast kenyér" + +msgid "Minced meat" +msgstr "Darált hús" + +msgid "Pizza" +msgstr "Pizza" + +msgid "Spaghetti bolognese" +msgstr "Bolognai spagetti" + +msgid "Sandwiches" +msgstr "Szendvics" + +msgid "English" +msgstr "Angol" + +msgid "German" +msgstr "Német" + +msgid "Italian" +msgstr "Olasz" + +msgid "This is the note content of the recipe ingredient" +msgstr "Ez a recept hozzávalójának megjegyzés tartalma" + +msgid "Demo User" +msgstr "Demo felhasználó" + +msgid "Gram" +msgid_plural "Grams" +msgstr[0] "Gramm" +msgstr[1] "Gramm" + +msgid "Flour" +msgstr "Liszt" + +msgid "Pancakes" +msgstr "Palacsinta" + +msgid "Sugar" +msgstr "Cukor" + +msgid "Home" +msgstr "Otthon" + +msgid "Life" +msgstr "Élet" + +msgid "Projects" +msgstr "Projektek" + +msgid "Repair the garage door" +msgstr "Garázsajtó megjavítása" + +msgid "Fork and improve grocy" +msgstr "Forkold és fejleszd te is Grocyt" + +msgid "Find a solution for what to do when I forget the door keys" +msgstr "Megoldást találni, mit tennék akkor, ha elhagyom a lakáskulcsot" + +msgid "Sweets" +msgstr "Édességek" + +msgid "Bakery products" +msgstr "Péktermékek" + +msgid "Tinned food" +msgstr "Konzerves étel" + +msgid "Butchery products" +msgstr "Hentes termékek" + +msgid "Vegetables/Fruits" +msgstr "Zöldségek/Gyümölcsök" + +msgid "Refrigerated products" +msgstr "Hűtött termékek" + +msgid "Coffee machine" +msgstr "Kávéfőző" + +msgid "Dishwasher" +msgstr "Mosogató" + +msgid "Liter" +msgstr "Liter" + +msgid "Liters" +msgstr "Liter" + +msgid "Bottle" +msgstr "Üveg" + +msgid "Bottles" +msgstr "Üveg" + +msgid "Milk" +msgstr "Tej" + +msgid "Chocolate sauce" +msgstr "Csokiszósz" + +msgid "Milliliters" +msgstr "Milliliter" + +msgid "Milliliter" +msgstr "Milliliter" + +msgid "Bottom" +msgstr "Alsó" + +msgid "Topping" +msgstr "Feltét" + +msgid "French" +msgstr "Francia" + +msgid "Turkish" +msgstr "Török" + +msgid "Spanish" +msgstr "Spanyol" + +msgid "Russian" +msgstr "Orosz" + +msgid "The thing which happens on the 5th of every month" +msgstr "A dolog, amely minden hónap 5. napján megtörténik" + +msgid "The thing which happens daily" +msgstr "A dolog, amely minden nap megtörténik" + +msgid "The thing which happens on Mondays and Wednesdays" +msgstr "A dolog, amely minden hétfőn és szerdán megtörténik" + +msgid "Swedish" +msgstr "Svéd" + +msgid "Polish" +msgstr "Lengyel" + +msgid "Milk Chocolate" +msgstr "Tejcsokoládé" + +msgid "Dark Chocolate" +msgstr "Étcsokoládé" + +msgid "Slice" +msgid_plural "Slices" +msgstr[0] "Szelet" +msgstr[1] "Szelet" + +msgid "Example userentity" +msgstr "Példa felhasználóentitás" + +msgid "This is an example user entity..." +msgstr "Ez egy példa felhasználóentitás" + +msgid "Custom field" +msgstr "Egyéni mező" + +msgid "Example field value..." +msgstr "Példa egyéni mező érték..." + +msgid "Waffle rolls" +msgstr "Gofri tekercs" + +msgid "Danish" +msgstr "Dán" + +msgid "Dutch" +msgstr "Holland" + +msgid "Norwegian" +msgstr "Norvég" + +msgid "Demo" +msgstr "Demo" + +msgid "Stable version" +msgstr "Stabil verzió" + +msgid "Preview version" +msgstr "Előzetes verzió" + +msgid "current release" +msgstr "jelenlegi kiadás" + +msgid "not yet released" +msgstr "még nem megjelent" + +msgid "Portuguese (Brazil)" +msgstr "Portugál (Brazil)" + +msgid "This is a note" +msgstr "Ez egy jegyzet" + +msgid "Freezer" +msgstr "Fagyasztószekrény" + +msgid "Hungarian" +msgstr "Magyar" + +msgid "Slovak" +msgstr "Szlovák" diff --git a/localization/hu/stock_transaction_types.po b/localization/hu/stock_transaction_types.po new file mode 100644 index 00000000..c4ba43d3 --- /dev/null +++ b/localization/hu/stock_transaction_types.po @@ -0,0 +1,45 @@ +# Translators: +# Márk Kökény , 2019 +# Gabor Pilsits , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Gabor Pilsits , 2020\n" +"Language-Team: Hungarian (https://www.transifex.com/grocy/teams/93189/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Domain: grocy/stock_transaction_types\n" + +msgid "purchase" +msgstr "vásárlás" + +msgid "transfer_from" +msgstr "mozgatás innen" + +msgid "transfer_to" +msgstr "mozgatás ide" + +msgid "consume" +msgstr "elfogyasztás" + +msgid "inventory-correction" +msgstr "készlet-korrekció" + +msgid "product-opened" +msgstr "felbontott-termék" + +msgid "stock-edit-old" +msgstr "régi készlet szerkesztése" + +msgid "stock-edit-new" +msgstr "új készlet szerkesztése" + +msgid "self-production" +msgstr "sajátkészítés" diff --git a/localization/hu/strings.po b/localization/hu/strings.po new file mode 100644 index 00000000..4d34e153 --- /dev/null +++ b/localization/hu/strings.po @@ -0,0 +1,1837 @@ +# Translators: +# Márk Kökény , 2019 +# Ádám Kovács , 2019 +# Gabor Pilsits , 2020 +# Peter Gyetvai , 2020 +# Gábor Szellő , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Gábor Szellő , 2020\n" +"Language-Team: Hungarian (https://www.transifex.com/grocy/teams/93189/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Domain: grocy/strings\n" + +msgid "Stock overview" +msgstr "Készlet áttekintése" + +msgid "%s product expires" +msgid_plural "%s products expiring" +msgstr[0] "%s termék szavatossága le fog járni" +msgstr[1] "%s termék szavatossága le fog járni" + +msgid "within the next day" +msgid_plural "within the next %s days" +msgstr[0] "a következő napon" +msgstr[1] "a következő %s napon belül" + +msgid "%s product is already expired" +msgid_plural "%s products are already expired" +msgstr[0] " %s termék szavatossága lejárt" +msgstr[1] "%s termék szavatossága lejárt" + +msgid "%s product is below defined min. stock amount" +msgid_plural "%s products are below defined min. stock amount" +msgstr[0] "%s termék a meghatározott minimum mennyiség alá esett" +msgstr[1] "%s termék a meghatározott minimum mennyiség alá esett" + +msgid "Product" +msgstr "Termék" + +msgid "%s Product" +msgid_plural "%s Products" +msgstr[0] "%s Termék" +msgstr[1] "%s Termék" + +msgid "Amount" +msgstr "Mennyiség" + +msgid "Next best before date" +msgstr "Következő lejárati dátum" + +msgid "Logout" +msgstr "Kijelentkezés" + +msgid "Chores overview" +msgstr "Házimunkák áttekintése" + +msgid "Batteries overview" +msgstr "Elemek áttekintése" + +msgid "Purchase" +msgstr "Vásárlás" + +msgid "Consume" +msgstr "Felhasználás" + +msgid "Inventory" +msgstr "Készlet" + +msgid "Shopping list" +msgstr "Bevásárlólista" + +msgid "Chore tracking" +msgstr "Házimunka követése" + +msgid "Battery tracking" +msgstr "Elemek követése" + +msgid "Locations" +msgstr "Helyek" + +msgid "Quantity units" +msgstr "Mennyiségi egységek" + +msgid "Chores" +msgstr "Házimunkák" + +msgid "Batteries" +msgstr "Elemek" + +msgid "Chore" +msgstr "Házimunka" + +msgid "Next estimated tracking" +msgstr "Legközelebbi becsült követés" + +msgid "Last tracked" +msgstr "Legutóbb követve" + +msgid "Battery" +msgstr "Elem" + +msgid "Last charged" +msgstr "Legutóbb feltöltve" + +msgid "Next planned charge cycle" +msgstr "Következő tervezett töltési ciklus" + +msgid "Best before" +msgstr "Szavatosság" + +msgid "OK" +msgstr "OK" + +msgid "Product overview" +msgstr "Termékek áttekintése" + +msgid "Stock quantity unit" +msgstr "Készlet mennyiségi egység" + +msgid "Stock amount" +msgstr "Készlet mennyiség" + +msgid "Last purchased" +msgstr "Legutóbb vásárolva" + +msgid "Last used" +msgstr "Legutóbb felhasználva" + +msgid "Spoiled" +msgstr "Megromlott" + +msgid "Barcode lookup is disabled" +msgstr "Vonalkódos keresés le van tiltva" + +msgid "" +"will be added to the list of barcodes for the selected product on submit" +msgstr "" +"hozzá lesz adva a vonalkódok listájához a kiválasztott termék esetén " +"beküldéskor" + +msgid "New amount" +msgstr "Új mennyiség" + +msgid "Note" +msgstr "Jegyzet" + +msgid "Tracked time" +msgstr "Követett idő" + +msgid "Chore overview" +msgstr "Házimunkák áttekintése" + +msgid "Tracked count" +msgstr "Nyomonkövetések száma" + +msgid "Battery overview" +msgstr "Elemek áttekintése" + +msgid "Charge cycles count" +msgstr "Töltési ciklusok száma" + +msgid "Create shopping list item" +msgstr "Bevásárlólista elem létrehozása" + +msgid "Edit shopping list item" +msgstr "Bevásárlólista elem szerkesztése" + +msgid "Save" +msgstr "Mentés" + +msgid "Add" +msgstr "Hozzáadás" + +msgid "Name" +msgstr "Név" + +msgid "Location" +msgstr "Hely" + +msgid "Min. stock amount" +msgstr "Min. készlet mennyiség" + +msgid "QU purchase" +msgstr "Mennyiségi egység vásárlás" + +msgid "QU stock" +msgstr "Mennyiségi egység készlet" + +msgid "QU factor" +msgstr "Mennyiségi egység szorzó" + +msgid "Description" +msgstr "Leírás" + +msgid "Create product" +msgstr "Termék létrehozása" + +msgid "Barcode(s)" +msgstr "Vonalkód(ok)" + +msgid "Minimum stock amount" +msgstr "Minimális készlet mennyiség" + +msgid "Default best before days" +msgstr "Alapértelmezett szavatossági idő" + +msgid "Quantity unit purchase" +msgstr "Mennyiségi egység vásárlás" + +msgid "Quantity unit stock" +msgstr "Mennyiségi egység készleten" + +msgid "Factor purchase to stock quantity unit" +msgstr "Vásárlás beszámítása a készlet mennyiségi egységbe" + +msgid "Create location" +msgstr "Hely létrehozása" + +msgid "Create quantity unit" +msgstr "Mennyiségi egység létrehozása" + +msgid "Period type" +msgstr "Ciklus típusa" + +msgid "Period days" +msgstr "Ciklus napok" + +msgid "Create chore" +msgstr "Házimunka létrehozása" + +msgid "Used in" +msgstr "Itt használva" + +msgid "Create battery" +msgstr "Elem létrehozása" + +msgid "Edit battery" +msgstr "Elem szerkesztése" + +msgid "Edit chore" +msgstr "Házimunka szerkesztése" + +msgid "Edit quantity unit" +msgstr "Mennyiségi egység szerkesztése" + +msgid "Edit product" +msgstr "Termék szerkesztése" + +msgid "Edit location" +msgstr "Hely szerkesztése" + +msgid "Record data" +msgstr "Adat rögzítése" + +msgid "Manage master data" +msgstr "Törzsadatkezelés" + +msgid "This will apply to added products" +msgstr "Ez érvényesülni fog a hozzáadott termékekre" + +msgid "never" +msgstr "soha" + +msgid "Add products that are below defined min. stock amount" +msgstr "A megadott minimum alatti termékek hozzáadása" + +msgid "" +"For purchases this amount of days will be added to today for the best before" +" date suggestion" +msgstr "" + +msgid "This means 1 %1$s purchased will be converted into %2$s %3$s in stock" +msgstr "" +"Ez azt jelenti, hogy a megvásárolt 1 %1$s, %2$sés %3$s-ként fog átváltódni " +"és megjelenni a készletben " + +msgid "Login" +msgstr "Bejelentkezés" + +msgid "Username" +msgstr "Felhasználóinév" + +msgid "Password" +msgstr "Jelszó" + +msgid "Invalid credentials, please try again" +msgstr "Érvénytelen adatok, kérlek próbáld újra" + +msgid "Are you sure to delete battery \"%s\"?" +msgstr "Biztosan törölni szeretnéd a következő elemet: \"%s\"?" + +msgid "Yes" +msgstr "Igen" + +msgid "No" +msgstr "Nem" + +msgid "Are you sure to delete chore \"%s\"?" +msgstr "Biztosan törölni szeretnéd a következő házimunkát: \"%s\"?" + +msgid "\"%s\" could not be resolved to a product, how do you want to proceed?" +msgstr "%s nem feleltethető meg terméknek, hogyan folytatod?" + +msgid "Create or assign product" +msgstr "Létrehozás, vagy hozzárendelés termékhez" + +msgid "Cancel" +msgstr "Mégse" + +msgid "Add as new product" +msgstr "Új termék hozzáadása" + +msgid "Add as barcode to existing product" +msgstr "Hozzáadás vonalkódként létező termékhez" + +msgid "Add as new product and prefill barcode" +msgstr "Hozzáadás új termékként és a vonalkód kitöltése" + +msgid "Are you sure to delete quantity unit \"%s\"?" +msgstr "Biztosan törölni szeretnéd a következő mennyiségi egységet: \"%s\" ?" + +msgid "Are you sure to delete product \"%s\"?" +msgstr "Biztosan törölni szeretnéd a következő terméket: \"%s\"?" + +msgid "Are you sure to delete location \"%s\"?" +msgstr "Biztosan törölni szeretnéd a következő helyet: \"%s\"?" + +msgid "Manage API keys" +msgstr "API kulcsok kezelése" + +msgid "REST API & data model documentation" +msgstr "REST API & adat modell dokumentáció" + +msgid "API keys" +msgstr "API kulcsok" + +msgid "Create new API key" +msgstr "Új API kulcs létrehozása" + +msgid "API key" +msgstr "API kulcs" + +msgid "Expires" +msgstr "Lejár" + +msgid "Created" +msgstr "Létrehozva" + +msgid "This product is not in stock" +msgstr "Ez a termék nincs készleten" + +msgid "This means %s will be added to stock" +msgstr "Ez azt jelenti, %s hozzá lesz adva a készlethez" + +msgid "This means %s will be removed from stock" +msgstr "Ez azt jelenti, %s el lesz távolítva a készletből" + +msgid "" +"This means the next execution of this chore is scheduled %s days after the " +"last execution" +msgstr "" +"Ez azt jelenti, hogy a következő háztartási munka %s nap múlva lesz " +"beütemezve a legutólsóhoz képest" + +msgid "Removed %1$s of %2$s from stock" +msgstr "%1$s a %2$s-ből/ból el lett távolítva a készletből" + +msgid "About grocy" +msgstr "Grocyról" + +msgid "Close" +msgstr "Bezár" + +msgid "Released on" +msgstr "Megjelent ekkor" + +msgid "Added %1$s of %2$s to stock" +msgstr "%1$sa %2$s-ből/ból hozzá lett adva a készlethez" + +msgid "Stock amount of %1$s is now %2$s" +msgstr "A készlet %1$s-ból/ből jelenleg %2$s" + +msgid "Tracked execution of chore %1$s on %2$s" +msgstr "Az elvégzett%1$sházimunka a %2$s -on naplózásra került" + +msgid "Tracked charge cycle of battery %1$s on %2$s" +msgstr "" + +msgid "Consume all %s which are currently in stock" +msgstr "Összes készleten lévő %s felhasználása" + +msgid "All" +msgstr "Mind" + +msgid "Track charge cycle of battery %s" +msgstr "%s elem töltési ciklusának a követése" + +msgid "Track execution of chore %s" +msgstr "%s házimunka elvégzésének követése" + +msgid "Filter by location" +msgstr "Hely szerinti szűrés" + +msgid "Search" +msgstr "Keresés" + +msgid "Not logged in" +msgstr "Nincs bejelentkezve" + +msgid "You have to select a product" +msgstr "Ki kell választanod egy terméket" + +msgid "You have to select a chore" +msgstr "Választanod kell választanod egy házimunkát" + +msgid "You have to select a battery" +msgstr "Választanod kell választanod egy elemet" + +msgid "A name is required" +msgstr "A név megadása kötelező" + +msgid "A location is required" +msgstr "A hely megadása kötelező" + +msgid "The amount cannot be lower than %s" +msgstr "A mennyiség nem lehet kevesebb, mint %s" + +msgid "This cannot be negative" +msgstr "Nem lehet negatív" + +msgid "A quantity unit is required" +msgstr "A mennyiségi egység megadása kötelező" + +msgid "A period type is required" +msgstr "A ciklus típusának megadása kötelező" + +msgid "A best before date is required" +msgstr "A lejárati dátum megadása kötelező" + +msgid "Settings" +msgstr "Beállítások" + +msgid "This can only be before now" +msgstr "Ez csak jelenlegi dátumnál korábbi dátum lehet csak" + +msgid "Calendar" +msgstr "Naptár" + +msgid "Recipes" +msgstr "Receptek" + +msgid "Edit recipe" +msgstr "Recept szerkesztése" + +msgid "New recipe" +msgstr "Új recept" + +msgid "Ingredients list" +msgstr "Hozzávalók listája" + +msgid "Add recipe ingredient" +msgstr "Hozzávaló hozzáadása" + +msgid "Edit recipe ingredient" +msgstr "Hozzávaló szerkesztése" + +msgid "Are you sure to delete recipe \"%s\"?" +msgstr "Biztos benne, hogy törli a receptet \"%s\" ?" + +msgid "Are you sure to delete recipe ingredient \"%s\"?" +msgstr "Biztos benne, hogy törli a recept hozzávalót \"%s\" ?" + +msgid "Are you sure to empty shopping list \"%s\"?" +msgstr "Biztosan kiüríted a következő bevásárló listát: %s?" + +msgid "Clear list" +msgstr "Lista törlése" + +msgid "Requirements fulfilled" +msgstr "Követelmények teljesültek" + +msgid "Put missing products on shopping list" +msgstr "Add hozzá a hiányzó termékeket a bevásárló listához" + +msgid "Enough in stock" +msgstr "Elegendő mennyiség készleten" + +msgid "" +"Not enough in stock, %s ingredient missing but already on the shopping list" +msgid_plural "" +"Not enough in stock, %s ingredients missing but already on the shopping list" +msgstr[0] "" +"Nincs elegendő készleten, %s hozzávaló hiányzik, de már szerepel a " +"bevásárlólistán" +msgstr[1] "" +"Nincs elegendő készleten, %s hozzávaló hiányzik, de már szerepel a " +"bevásárlólistán" + +msgid "Expand to fullscreen" +msgstr "Teljes képernyő" + +msgid "Ingredients" +msgstr "Hozzávalók" + +msgid "Preparation" +msgstr "Előkészületek" + +msgid "Recipe" +msgstr "Recept" + +msgid "Not enough in stock, %1$s missing, %2$s already on shopping list" +msgstr "" +"Nincs elegendő készleten, %1$s hiányzik, %2$s már szerepel a bevásárlólistán" + +msgid "Show notes" +msgstr "Jegyzetek megtekintése" + +msgid "Put missing amount on shopping list" +msgstr "Tegye a hiányzó mennyiséget a bevásárlólistára" + +msgid "" +"Are you sure to put all missing ingredients for recipe \"%s\" on the " +"shopping list?" +msgstr "" +"Biztos benne, hogy a bevásárlólistára teszi az összes hiányzó \"%s\" " +"recepthez tartózó hozzávalót?" + +msgid "Added for recipe %s" +msgstr "Hozzáadva ehhez a recepthez: \"%s\"" + +msgid "Manage users" +msgstr "Felhasználók kezelése" + +msgid "User" +msgstr "Felhasználó" + +msgid "Users" +msgstr "Felhasználó" + +msgid "Are you sure to delete user \"%s\"?" +msgstr "Biztosan törölni szeretnéd a következő felhasználót: \"%s\"?" + +msgid "Create user" +msgstr "Felhasználó létrehozása" + +msgid "Edit user" +msgstr "Felhasználó szerkesztése" + +msgid "First name" +msgstr "Keresztnév" + +msgid "Last name" +msgstr "Vezetéknév" + +msgid "A username is required" +msgstr "A felhasználóinév megadása kötelező" + +msgid "Confirm password" +msgstr "Jelszó megerősítése" + +msgid "Passwords do not match" +msgstr "Jelszavak nem egyeznek" + +msgid "Change password" +msgstr "Jelszó módosítása" + +msgid "Done by" +msgstr "Elvégezte:" + +msgid "Last done by" +msgstr "Legutóbb elvégezte:" + +msgid "Unknown" +msgstr "Ismeretlen" + +msgid "Filter by chore" +msgstr "Házimunka szerinti szűrés" + +msgid "Chores journal" +msgstr "Házimunka napló" + +msgid "0 means suggestions for the next charge cycle are disabled" +msgstr "" +"0 azt jelenti, hogy javaslatok a következő töltésiciklusra nincsenek " +"bekapcsolva" + +msgid "Charge cycle interval (days)" +msgstr "Töltésiciklus intervallum (napok)" + +msgid "Last price" +msgstr "Legutóbbi ár" + +msgid "Price history" +msgstr "Ár előzmények" + +msgid "No price history available" +msgstr "Nincs elérhető ár előzmények" + +msgid "Price" +msgstr "Ár" + +msgid "in %s per purchase quantity unit" +msgstr "" + +msgid "The price cannot be lower than %s" +msgstr "Az ár nem lehet kevesebb, mint %s" + +msgid "Unit" +msgstr "Egység" + +msgid "%s Unit" +msgid_plural "%s Units" +msgstr[0] "%s Egység" +msgstr[1] "%s Egység" + +msgid "%s chore is due to be done" +msgid_plural "%s chores are due to be done" +msgstr[0] "" +msgstr[1] "" + +msgid "%s chore is overdue to be done" +msgid_plural "%s chores are overdue to be done" +msgstr[0] "" +msgstr[1] "" + +msgid "%s battery is due to be charged" +msgid_plural "%s batteries are due to be charged" +msgstr[0] "" +msgstr[1] "" + +msgid "%s battery is overdue to be charged" +msgid_plural "%s batteries are overdue to be charged" +msgstr[0] "" +msgstr[1] "" + +msgid "in singular form" +msgstr "egyes számban" + +msgid "Never expires" +msgstr "Sosem jár le" + +msgid "This cannot be lower than %s" +msgstr "Nem lehet kisebb, mint %s" + +msgid "-1 means that this product never expires" +msgstr "-1 azt jelenti, hogy ez a termék sohasem romlik meg" + +msgid "Quantity unit" +msgstr "Mennyiségi egység" + +msgid "" +"Only check if a single unit is in stock (a different quantity can then be " +"used above)" +msgstr "" + +msgid "" +"Are you sure to consume all ingredients needed by recipe \"%s\" (ingredients" +" marked with \"check only if a single unit is in stock\" will be ignored)?" +msgstr "" + +msgid "Removed all ingredients of recipe \"%s\" from stock" +msgstr "Minden hozzávaló eltávolítva a készletről ehhez: '%s'" + +msgid "Consume all ingredients needed by this recipe" +msgstr "A recept minden alapanyagának felhasználása" + +msgid "Click to show technical details" +msgstr "Kattintson ide a technikai részletekért" + +msgid "Error while saving, probably this item already exists" +msgstr "Hiba mentés közben, valószínűleg ez a termék már létezik" + +msgid "Error details" +msgstr "Hiba részletei" + +msgid "Tasks" +msgstr "Feladatok" + +msgid "Show done tasks" +msgstr "Befejezett feladatok" + +msgid "Task" +msgstr "Feladat" + +msgid "Due" +msgstr "Esedékes" + +msgid "Assigned to" +msgstr "Hozzárendelve" + +msgid "Mark task \"%s\" as completed" +msgstr "" + +msgid "Uncategorized" +msgstr "Kategorizálatlan" + +msgid "Task categories" +msgstr "Feladat kategóriák" + +msgid "Create task" +msgstr "Feladat létrehozása" + +msgid "A due date is required" +msgstr "A határidő megadása kötelező" + +msgid "Category" +msgstr "Kategória" + +msgid "Edit task" +msgstr "Feladat szerkesztése" + +msgid "Are you sure to delete task \"%s\"?" +msgstr "Biztosan törölni szeretnéd a következő feladatot: \"%s\"?" + +msgid "%s task is due to be done" +msgid_plural "%s tasks are due to be done" +msgstr[0] "" +msgstr[1] "" + +msgid "%s task is overdue to be done" +msgid_plural "%s tasks are overdue to be done" +msgstr[0] "" +msgstr[1] "" + +msgid "Edit task category" +msgstr "Feladat kategória szerkesztése" + +msgid "Create task category" +msgstr "Feladat kategória létrehozása" + +msgid "Product groups" +msgstr "Termékcsoportok" + +msgid "Ungrouped" +msgstr "Nem csoportosított" + +msgid "Create product group" +msgstr "Termékcsoport létrehozása" + +msgid "Edit product group" +msgstr "Termékcsoport szerkesztése" + +msgid "Product group" +msgstr "Termékcsoport" + +msgid "Are you sure to delete product group \"%s\"?" +msgstr "Biztosan töröli szeretnéd a következő termékcsoportot: \"%s\"?" + +msgid "Stay logged in permanently" +msgstr "Bejelentkezés korlátlan ideig" + +msgid "When not set, you will get logged out at latest after 30 days" +msgstr "" +"Amikor nincs beállítva, akkor legkorábban 30 nap után ki leszel léptetve" + +msgid "Filter by status" +msgstr "Állapot szerinti szűrés" + +msgid "Below min. stock amount" +msgstr "Min. készlet mennyiség alatt" + +msgid "Expiring soon" +msgstr "Hamarosan lejár" + +msgid "Already expired" +msgstr "Lejárt" + +msgid "Due soon" +msgstr "Hamarosan esedékes" + +msgid "Overdue" +msgstr "Késik" + +msgid "View settings" +msgstr "Beállítások megtekintése" + +msgid "Auto reload on external changes" +msgstr "Automatikus újratöltés külső változásoknál" + +msgid "Enable night mode" +msgstr "Éjszakai mód engedélyezése" + +msgid "Auto enable in time range" +msgstr "Automatikus bekapcsolás az időintervallumon" + +msgid "From" +msgstr "" + +msgid "in format" +msgstr "" + +msgid "To" +msgstr "" + +msgid "Time range goes over midnight" +msgstr "" + +msgid "Product picture" +msgstr "Termék kép" + +msgid "No file selected" +msgstr "Nincs fájl kiválasztva" + +msgid "If you don't select a file, the current picture will not be altered" +msgstr "" +"Ha nem választasz ki egy fájlt, akkor a jelenlegi kép nem lesz módosítva" + +msgid "Delete" +msgstr "Törlés" + +msgid "The current picture will be deleted when you save the product" +msgstr "A jelenlegi kép törölve lesz amikor mented a terméket" + +msgid "Select file" +msgstr "Válassz fájlt" + +msgid "Image of product %s" +msgstr "" + +msgid "" +"This product cannot be deleted because it is in stock, please remove the " +"stock amount first." +msgstr "" +"Ez a termék nem törölhető, mert még készleten van, kérlek először távolítsd " +"el a készlet mennyiséget!" + +msgid "Delete not possible" +msgstr "Nem lehetséges a törlés" + +msgid "Equipment" +msgstr "Eszköz" + +msgid "Instruction manual" +msgstr "Használati útmutató" + +msgid "The selected equipment has no instruction manual" +msgstr "A kiválasztott eszköznek nincs használati útmutatója" + +msgid "Notes" +msgstr "Jegyzetek" + +msgid "Edit equipment" +msgstr "Eszköz szerkesztése" + +msgid "Create equipment" +msgstr "Eszköz létrehozása" + +msgid "" +"If you don't select a file, the current instruction manual will not be " +"altered" +msgstr "" +"Ha nem választasz ki egy fájlt, akkor a jelenlegi használati útmutató nem " +"lesz módosítva" + +msgid "No instruction manual available" +msgstr "Nem áll rendelkezésre használati útmutató" + +msgid "" +"The current instruction manual will be deleted when you save the equipment" +msgstr "" +"A jelenlegi használati útmutató törölve lesz, amikor mented az eszközt" + +msgid "No picture available" +msgstr "Nincs kép megadva" + +msgid "Filter by product group" +msgstr "Termékcsoport szerinti szűrés" + +msgid "Presets for new products" +msgstr "" + +msgid "Included recipes" +msgstr "" + +msgid "A recipe is required" +msgstr " A recept megadása kötelező" + +msgid "Add included recipe" +msgstr "" + +msgid "Edit included recipe" +msgstr "Recept szerkesztése" + +msgid "Group" +msgstr "Csoport" + +msgid "This will be used as a headline to group ingredients together" +msgstr "" + +msgid "Journal" +msgstr "Napló" + +msgid "Stock journal" +msgstr "Készlet napló" + +msgid "Filter by product" +msgstr "Termék szerinti szűrés" + +msgid "Booking time" +msgstr "Foglalási időpont" + +msgid "Booking type" +msgstr "Foglalás típus" + +msgid "Undo booking" +msgstr "Foglalás visszavonása" + +msgid "Undone on" +msgstr "" + +msgid "Batteries journal" +msgstr "Elem napló" + +msgid "Filter by battery" +msgstr "Elem szerinti szűrés" + +msgid "Undo charge cycle" +msgstr "Töltési ciklus visszavonása" + +msgid "Undo chore execution" +msgstr "Házimunka végrehajtás visszavonása" + +msgid "Chore execution successfully undone" +msgstr "Házimunka végrehajtás sikeresen visszavonva" + +msgid "Undo" +msgstr "Visszavonás" + +msgid "Booking successfully undone" +msgstr "Foglalás sikeresen visszavonva" + +msgid "Charge cycle successfully undone" +msgstr "Töltési ciklus sikeresen visszavonva" + +msgid "This cannot be negative and must be an integral number" +msgstr "Nem lehet negatív, és egész szám megadása szükséges" + +msgid "Disable stock fulfillment checking for this ingredient" +msgstr "" + +msgid "Add all list items to stock" +msgstr "Összes listaelem hozzáadása készlethez" + +msgid "Add %1$s of %2$s to stock" +msgstr "" + +msgid "Adding shopping list item %1$s of %2$s" +msgstr "" + +msgid "Use a specific stock item" +msgstr "Megadott készletelem használata" + +msgid "" +"The first item in this list would be picked by the default rule which is " +"\"First expiring first, then first in first out\"" +msgstr "" + +msgid "Mark %1$s of %2$s as open" +msgstr "" + +msgid "" +"When this product was marked as opened, the best before date will be " +"replaced by today + this amount of days (a value of 0 disables this)" +msgstr "" + +msgid "Default best before days after opened" +msgstr "Alapértelmezett szavatossági idő felbontás után" + +msgid "Marked %1$s of %2$s as opened" +msgstr "" + +msgid "Mark as opened" +msgstr "Megjelölés felbontottként" + +msgid "Not opened" +msgstr "Felbontatlan" + +msgid "Opened" +msgstr "Felbontva" + +msgid "%s opened" +msgstr "%s felbontva" + +msgid "Product expires" +msgstr "Termék lejár" + +msgid "Task due" +msgstr "Feladat esedékes" + +msgid "Chore due" +msgstr "Házimunka esedékes" + +msgid "Battery charge cycle due" +msgstr "Töltési ciklus esedékes" + +msgid "Show clock in header" +msgstr "Óra megjelenítése a fejlécben" + +msgid "Stock settings" +msgstr "Készlet beállítások" + +msgid "Shopping list to stock workflow" +msgstr "" + +msgid "" +"Automatically do the booking using the last price and the amount of the " +"shopping list item, if the product has \"Default best before days\" set" +msgstr "" + +msgid "Skip" +msgstr "Kihagyás" + +msgid "Servings" +msgstr "Adagok" + +msgid "Costs" +msgstr "Árak" + +msgid "Based on the prices of the last purchase per product" +msgstr "" + +msgid "The ingredients listed here result in this amount of servings" +msgstr "A megadott alapanyagokból ennyi adag jön ki" + +msgid "Do not check against the shopping list when adding missing items to it" +msgstr "" + +msgid "" +"By default the amount to be added to the shopping list is \"needed amount - " +"stock amount - shopping list amount\" - when this is enabled, it is only " +"checked against the stock amount, not against what is already on the " +"shopping list" +msgstr "" + +msgid "Picture" +msgstr "Kép" + +msgid "Uncheck ingredients to not put them on the shopping list" +msgstr "" + +msgid "This is for statistical purposes only" +msgstr "Csak statisztikai céllal" + +msgid "You have to select a recipe" +msgstr "Ki kell választanod egy receptet" + +msgid "Key type" +msgstr "Kulcs típus" + +msgid "Share/Integrate calendar (iCal)" +msgstr "Naptár megosztása/integrálása (iCal)" + +msgid "" +"Use the following (public) URL to share or integrate the calendar in iCal " +"format" +msgstr "" + +msgid "Allow partial units in stock" +msgstr "" + +msgid "Enable tare weight handling" +msgstr "Tára súly kezelés engedélyezése" + +msgid "" +"This is useful e.g. for flour in jars - on purchase/consume/inventory you " +"always weigh the whole jar, the amount to be posted is then automatically " +"calculated based on what is in stock and the tare weight defined below" +msgstr "" + +msgid "Tare weight" +msgstr "Tára súly" + +msgid "" +"Tare weight handling enabled - please weigh the whole container, the amount " +"to be posted will be automatically calculcated" +msgstr "" + +msgid "You have to select a location" +msgstr "Ki kell választanod egy helyet" + +msgid "List" +msgstr "Lista" + +msgid "Gallery" +msgstr "Galéria" + +msgid "The current picture will be deleted when you save the recipe" +msgstr "A jelenlegi kép törölve lesz, amikor mented a receptet" + +msgid "Show product details" +msgstr "Termék részletek" + +msgid "Stock journal for this product" +msgstr "Termékhez tartozó készlet napló" + +msgid "Show chore details" +msgstr "Házimunka részletei" + +msgid "Journal for this chore" +msgstr "Házimunkához tartozó napló" + +msgid "Show battery details" +msgstr "Elem részletek" + +msgid "Journal for this battery" +msgstr "Elemhez tartozó napló" + +msgid "System info" +msgstr "Rendszerinformáció" + +msgid "Changelog" +msgstr "Változásnapló" + +msgid "will be multiplied a factor of %1$s to get %2$s" +msgstr "" + +msgid "The given date is earlier than today, are you sure?" +msgstr "A megadott dátum korábbi, mint a mai nap. Megtartod?" + +msgid "Product count" +msgstr "Termék darabszám" + +msgid "Type a new product name or barcode and hit TAB to start a workflow" +msgstr "" +"Írj be egy új terméket vagy vonalkódot, majd nyomd meg a TAB gombot a " +"munkafolyamat elindításához" + +msgid "" +"This will be used as the default setting when adding this product as a " +"recipe ingredient" +msgstr "" + +msgid "Add item" +msgstr "Hozzáadás" + +msgid "Selected shopping list" +msgstr "Kiválasztott bevásárló lista" + +msgid "New shopping list" +msgstr "Új bevásárló lista" + +msgid "Delete shopping list" +msgstr "Bevásárló lista törlése" + +msgid "Chores settings" +msgstr "Házimunka beállítások" + +msgid "Batteries settings" +msgstr "Elem beállítások" + +msgid "Tasks settings" +msgstr "Feladat beállítások" + +msgid "Create shopping list" +msgstr "Bevásárlólista létrehozása" + +msgid "Are you sure to delete shopping list \"%s\"?" +msgstr "Biztosan törölni szeretnéd a következő bevásárlólistát: \"%s\"?" + +msgid "Average shelf life" +msgstr "Átlagos szavatossági idő" + +msgid "Spoil rate" +msgstr "Megromlási arány" + +msgid "Show more" +msgstr "Több mutatása" + +msgid "Show less" +msgstr "Kevesebb mutatása" + +msgid "The amount must be between %1$s and %2$s" +msgstr "A mennyiség %1$s és %2$s között kell lennie" + +msgid "Day of month" +msgstr "" + +msgid "Monday" +msgstr "Hétfő" + +msgid "Tuesday" +msgstr "Kedd" + +msgid "Wednesday" +msgstr "Szerda" + +msgid "Thursday" +msgstr "Csütörtök" + +msgid "Friday" +msgstr "Péntek" + +msgid "Saturday" +msgstr "Szombat" + +msgid "Sunday" +msgstr "Vasárnap" + +msgid "Configure userfields" +msgstr "Egyéni mezők testreszabása" + +msgid "Userfields" +msgstr "Egyéni mezők" + +msgid "Filter by entity" +msgstr "Szűrés entitás szerint" + +msgid "Entity" +msgstr "Entitás" + +msgid "Caption" +msgstr "Felirat" + +msgid "Type" +msgstr "Típus" + +msgid "Create userfield" +msgstr "Egyéni mező létrehozása" + +msgid "A entity is required" +msgstr "Az entitás megadása kötelező" + +msgid "A caption is required" +msgstr "A felirat megadása kötelező" + +msgid "A type is required" +msgstr "A típus megadása kötelező" + +msgid "Show as column in tables" +msgstr "Megjelenítés oszlopként a táblázatokban" + +msgid "This is required and can only contain letters and numbers" +msgstr "Ez kötelező és csak betűket és számokat tartalmazhat" + +msgid "Edit userfield" +msgstr "Egyéni mező szerkesztése" + +msgid "Plural forms" +msgstr "" + +msgid "One plural form per line, the current language requires" +msgstr "" + +msgid "Plural count" +msgstr "" + +msgid "Plural rule" +msgstr "" + +msgid "in plural form" +msgstr "többesszámban" + +msgid "Not enough in stock, %s ingredient missing" +msgid_plural "Not enough in stock, %s ingredients missing" +msgstr[0] "Nincs elegendő készleten, %s hozzávaló hiányzik" +msgstr[1] "Nincs elegendő készleten, %s hozzávaló hiányzik" + +msgid "The amount cannot be lower than %1$s or equal %2$s" +msgstr "" + +msgid "Not enough in stock, but already on the shopping list" +msgstr "Nincs elegendő készleten, de már szerepel a bevásárlólistán" + +msgid "Not enough in stock" +msgstr "Nincs elegendő készleten" + +msgid "Expiring soon days" +msgstr "" + +msgid "Default location" +msgstr "Alapértelmezett hely" + +msgid "Default amount for purchase" +msgstr "Alapértelmezett vásárlási mennyiség" + +msgid "Default amount for consume" +msgstr "Alapértelmezett felhasználási mennyiség" + +msgid "Variable amount" +msgstr "Változó mennyiség" + +msgid "" +"When this is not empty, it will be shown instead of the amount entered above" +" while the amount there will still be used for stock fulfillment checking" +msgstr "" + +msgid "Track date only" +msgstr "Csak a dátum követése" + +msgid "When enabled only the day of an execution is tracked, not the time" +msgstr "" + +msgid "Consume %1$s of %2$s" +msgstr "" + +msgid "Meal plan" +msgstr "Menü terv" + +msgid "Add recipe to %s" +msgstr "Recept hozzáadása ehhez: \"%s\"" + +msgid "%s serving" +msgid_plural "%s servings" +msgstr[0] "%s tálalás" +msgstr[1] "%s adag" + +msgid "Week costs" +msgstr "Heti költség" + +msgid "Configuration" +msgstr "Konfiguráció" + +msgid "A predefined list of values, one per line" +msgstr "" + +msgid "Chores due soon days" +msgstr "" + +msgid "Batteries due to be charged soon days" +msgstr "" + +msgid "Tasks due soon days" +msgstr "" + +msgid "Products" +msgstr "Termékek" + +msgid "Marked task %s as completed on %s" +msgstr "" + +msgid "Booking has subsequent dependent bookings, undo not possible" +msgstr "" + +msgid "per serving" +msgstr "per adag" + +msgid "Never" +msgstr "Soha" + +msgid "Today" +msgstr "Ma" + +msgid "Consume %1$s of %2$s as spoiled" +msgstr "" + +msgid "Not all ingredients of recipe \"%s\" are in stock, nothing removed" +msgstr "" + +msgid "Undo task \"%s\"" +msgstr "\"%s\" tevékenység visszavonása" + +msgid "Due date rollover" +msgstr "" + +msgid "" +"When enabled the chore can never be overdue, the due date will shift forward" +" each day when due" +msgstr "" + +msgid "Location Content Sheet" +msgstr "Helyek áttekintése" + +msgid "Print" +msgstr "Nyomtatás" + +msgid "all locations" +msgstr "összes helyek" + +msgid "" +"Here you can print a page per location with the current stock, maybe to hang" +" it there and note the consumed things on it." +msgstr "" + +msgid "this location" +msgstr "ez a hely" + +msgid "Consumend amount" +msgstr "Felhasznált mennyiség" + +msgid "Time of printing" +msgstr "Nyomtatás időpontja" + +msgid "Are you sure to delete equipment \"%s\"?" +msgstr "Biztosan törölni szeretnéd a következő eszközt: \"%s\"?" + +msgid "Parent product" +msgstr "Szülő termék" + +msgid "" +"Not possible because this product is already used as a parent product in " +"another product" +msgstr "" +"Nem lehetséges, mert ez a termék egy másik termék szülő termékeként már " +"felhasználásra került" + +msgid "Default conversions" +msgstr "Alapértelmezett átváltások" + +msgid "Factor" +msgstr "Szorzó" + +msgid "1 %s is the same as..." +msgstr "1 %s ugyanaz mint..." + +msgid "Create QU conversion" +msgstr "Mennyiségi egység átváltás létrehozása" + +msgid "Default for QU" +msgstr "Alapértelmezett mennyiségi egység" + +msgid "Quantity unit from" +msgstr "" + +msgid "Quantity unit to" +msgstr "" + +msgid "" +"This cannot be lower than %1$s and must be a valid number with max. %2$s " +"decimal places" +msgstr "" + +msgid "This cannot be equal to %s" +msgstr "" + +msgid "This means 1 %1$s is the same as %2$s %3$s" +msgstr "" + +msgid "QU conversions" +msgstr "Mennyiségi egység átváltások" + +msgid "Product overrides" +msgstr "" + +msgid "Override for product" +msgstr "" + +msgid "This equals %1$s %2$s in stock" +msgstr "" + +msgid "Edit QU conversion" +msgstr "Mennyiségi egység átváltás szerkesztése" + +msgid "An assignment type is required" +msgstr "A hozzárendelési típus megadása kötelező" + +msgid "Assignment type" +msgstr "Hozzárendelés típusa" + +msgid "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution" +msgstr "" + +msgid "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution, but only for the weekdays selected below" +msgstr "" + +msgid "This means the next execution of this chore is not scheduled" +msgstr "" + +msgid "" +"This means the next execution of this chore is scheduled on the below " +"selected day of each month" +msgstr "" + +msgid "" +"This means the next execution of this chore will not be assigned to anyone" +msgstr "" + +msgid "" +"This means the next execution of this chore will be assigned to the one who " +"executed it least" +msgstr "" + +msgid "This means the next execution of this chore will be assigned randomly" +msgstr "" + +msgid "" +"This means the next execution of this chore will be assigned to the next one" +" in alphabetical order" +msgstr "" + +msgid "Assign to" +msgstr "Hozzérendelve" + +msgid "This assignment type requires that at least one is assigned" +msgstr "" + +msgid "%s chore is assigned to me" +msgid_plural "%s chores are assigned to me" +msgstr[0] "" +msgstr[1] "" + +msgid "Assigned to me" +msgstr "Hozzám rendelve" + +msgid "assigned to %s" +msgstr "hozzárendelve ehhez: %s" + +msgid "Filter by assignment" +msgstr "Hozzárendelés szerinti szűrés" + +msgid "Consume product on chore execution" +msgstr "" + +msgid "Are you sure to delete user field \"%s\"?" +msgstr "Biztosan törölni szeretnéd a következő egyéni mezőt: \"%s\"?" + +msgid "Userentities" +msgstr "Felhasználóentitások" + +msgid "Create userentity" +msgstr "Felhasználóentitás létrehozása" + +msgid "Show in sidebar menu" +msgstr "Megjelenítés oldalsávon" + +msgid "Edit userentity" +msgstr "Felhasználóentitás szerkesztése" + +msgid "Edit %s" +msgstr "%s szerkesztése" + +msgid "Create %s" +msgstr "%s létrehozása" + +msgid "Are you sure to delete this userobject?" +msgstr "" + +msgid "Icon CSS class" +msgstr "Ikon CSS osztály" + +msgid "For example" +msgstr "Példáúl" + +msgid "Configure fields" +msgstr "Mezők testreszabása" + +msgid "Quantity unit plural form testing" +msgstr "" + +msgid "Result" +msgstr "Eredmény" + +msgid "Test plural forms" +msgstr "" + +msgid "Scan a barcode" +msgstr "Vonalkód beolvasása" + +msgid "Error while initializing the barcode scanning library" +msgstr "Hiba történt a vonalkódolvasó könyvtár inicializálásakor" + +msgid "" +"The resulting price of this ingredient will be multiplied by this factor" +msgstr "" + +msgid "Price factor" +msgstr "Ár szorzó" + +msgid "Do you find grocy useful?" +msgstr "Hasznosnak találod a Grocyt?" + +msgid "Say thanks" +msgstr "Köszönd meg" + +msgid "Search for recipes containing this product" +msgstr "Receptek keresése, amelyek ezt a terméket tartalmazzák" + +msgid "Add to shopping list" +msgstr "Hozzáadás bevásárlólistához" + +msgid "Added %1$s of %2$s to the shopping list \"%3$s\"" +msgstr "" + +msgid "Output" +msgstr "Kimenet" + +msgid "Energy (kcal)" +msgstr "Energia (kcal)" + +msgid "Per stock quantity unit" +msgstr "" + +msgid "Barcode scanner testing" +msgstr "Vonalkódolvasó tesztelés" + +msgid "Expected barcode" +msgstr "Elvárt vonalkód" + +msgid "Scan field" +msgstr "Vonalkód mező" + +msgid "Scanned barcodes" +msgstr "Beolvasott vonalkódók" + +msgid "Hit" +msgstr "Találat" + +msgid "Miss" +msgstr "Téves" + +msgid "Display recipe" +msgstr "Recept megjelenítése" + +msgid "Accumulate sub products min. stock amount" +msgstr "" + +msgid "" +"If enabled, the min. stock amount of sub products will be accumulated into " +"this product, means the sub product will never be \"missing\", only this " +"product" +msgstr "" + +msgid "Are you sure to remove this conversion?" +msgstr "Biztosan törölni szeretnéd ezt az átváltást?" + +msgid "Unit price" +msgstr "Egységár" + +msgid "Total price" +msgstr "Összes költség" + +msgid "in %s and based on the purchase quantity unit" +msgstr "" + +msgid "Unlimited" +msgstr "Korlátlan" + +msgid "Clear" +msgstr "Törlés" + +msgid "Are you sure to remove the included recipe \"%s\"?" +msgstr "" + +msgid "Period interval" +msgstr "" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s days" +msgstr "" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s weeks" +msgstr "" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s months" +msgstr "" + +msgid "" +"This means the next execution of this chore is scheduled 1 year after the " +"last execution" +msgstr "" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s years" +msgstr "" + +msgid "Transfer" +msgstr "Áthelyezés" + +msgid "From location" +msgstr "Forráshely" + +msgid "To location" +msgstr "Célhely" + +msgid "There are no units available at this location" +msgstr "Nincsenek elérhető egységek ezen a helyen" + +msgid "Amount: %1$s; Expires on %2$s; Bought on %3$s" +msgstr "" + +msgid "Transfered %1$s of %2$s from %3$s to %4$s" +msgstr "" + +msgid "Show stock entries" +msgstr "Készlet bejegyzések megjelenítése" + +msgid "Stock entries" +msgstr "Készlet bejegyzések" + +msgid "Best before date" +msgstr "Szavatossági idő" + +msgid "Purchased date" +msgstr "Vásárlási napja" + +msgid "Consume all %s for this stock entry" +msgstr "" + +msgid "The amount cannot be lower than %1$s" +msgstr "A mennyiség nem lehet kisebb, mint %1$s" + +msgid "Stock entry successfully updated" +msgstr "Készlet bejegyzés sikeresen frissítve" + +msgid "Edit stock entry" +msgstr "Készlet bejegyzés szerkesztése" + +msgid "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" +msgstr "" +"A kamera hozzáférés csak akkor lehetséges, ha a böngésződ által támogatott " +"és engedélyezett, valamint ha a Grocy egy biztonságos (https://) kapcsolaton" +" keresztül van kiszolgálva" + +msgid "Keep screen on" +msgstr "Kijelző ébren tartása" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "Kijelző ébren tartása a \"teljesképernyős-kártya\" megjelenítésekor" + +msgid "A purchased date is required" +msgstr "A vásárlás dátumának megadása kötelező" + +msgid "" +"When a product is selected, one unit (per serving in purchase quantity unit)" +" will be added to stock on consuming this recipe" +msgstr "" + +msgid "Produces product" +msgstr "Terméket állít elő" + +msgid "This booking cannot be undone" +msgstr "Ez a foglalás nem visszavonható" + +msgid "Booking does not exist or was already undone" +msgstr "A foglalás nem létezik, vagy már korábban visszavonásra került" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "Biztosan törölni szeretnéd a következő API kulcsot: \"%s\"?" + +msgid "Add note" +msgstr "Jegyzet hozzáadása" + +msgid "Add note to %s" +msgstr "Jegyzet hozzáadása ehhez: \"%s\"" + +msgid "per day" +msgstr "per nap" + +msgid "Compact view" +msgstr "Kompakt nézet" + +msgid "Normal view" +msgstr "Normál nézet" + +msgid "Only undone items" +msgstr "" + +msgid "Add product" +msgstr "Termék hozzáadása" + +msgid "Add product to %s" +msgstr "Termék hozzáadása ehhez: \"%s\"" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" +"A hét receptjei vagy termékei számára szükséges összes hozzávaló " +"felhasználása " + +msgid "Meal plan recipe" +msgstr "Menü terv recept" + +msgid "Meal plan note" +msgstr "Menü terv jegyzet" + +msgid "Meal plan product" +msgstr "Menü terv termék" + +msgid "Scan mode" +msgstr "Beolvasás mód" + +msgid "on" +msgstr "be" + +msgid "off" +msgstr "ki" + +msgid "" +"Scan mode is on but not all required fields could be populated automatically" +msgstr "" +"A beolvasási mód be van kapcsolva, de nem minden kötelező mező tölthető ki " +"automatikusan" + +msgid "Is freezer" +msgstr "Fagyasztószekrény" + +msgid "" +"When moving products from/to a freezer location, the products best before " +"date is automatically adjusted according to the product settings" +msgstr "" + +msgid "" +"On moving this product to a freezer location (so when freezing it), the best" +" before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after freezing" +msgstr "Alapértelmezett szavatossági idő fagyasztás után" + +msgid "" +"On moving this product from a freezer location (so when thawing it), the " +"best before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after thawing" +msgstr "Alapértelmezett szavatossági idő kiolvasztás után" + +msgid "This cannot be the same as the \"From\" location" +msgstr "Nem lehet azonos a \"Forrás\" hellyel" + +msgid "Thawed" +msgstr "Kiolvasztott" + +msgid "Frozen" +msgstr "Fagyasztott" + +msgid "Are you sure to delete userentity \"%s\"?" +msgstr "Biztosan törölni szeretnéd a következő felhasználóentitást: \"%s\"?" diff --git a/localization/hu/userfield_types.po b/localization/hu/userfield_types.po new file mode 100644 index 00000000..c2f5f542 --- /dev/null +++ b/localization/hu/userfield_types.po @@ -0,0 +1,49 @@ +# Translators: +# Márk Kökény , 2019 +# Ádám Kovács , 2019 +# Gábor Szellő , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-05-01 17:43+0000\n" +"Last-Translator: Gábor Szellő , 2020\n" +"Language-Team: Hungarian (https://www.transifex.com/grocy/teams/93189/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Domain: grocy/userfield_types\n" + +msgid "text-single-line" +msgstr "egysoros szöveg" + +msgid "text-multi-line" +msgstr "többsoros szöveg" + +msgid "number-integral" +msgstr "egész szám" + +msgid "number-decimal" +msgstr "decimális szám" + +msgid "date" +msgstr "dátum" + +msgid "datetime" +msgstr "dátumidőpont" + +msgid "checkbox" +msgstr "jelölőnégyzet" + +msgid "preset-list" +msgstr "előre beállított lista" + +msgid "preset-checklist" +msgstr "előre beállított jelölőlista" + +msgid "link" +msgstr "link" diff --git a/localization/it/demo_data.po b/localization/it/demo_data.po index 6e04329f..463427f4 100644 --- a/localization/it/demo_data.po +++ b/localization/it/demo_data.po @@ -1,7 +1,7 @@ # Translators: # Sergio Zampello , 2019 # Bernd Bestel , 2019 -# Antonino Ursino , 2019 +# Antonino Ursino , 2020 # msgid "" msgstr "" @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Antonino Ursino , 2019\n" +"Last-Translator: Antonino Ursino , 2020\n" "Language-Team: Italian (https://www.transifex.com/grocy/teams/93189/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -331,3 +331,18 @@ msgstr "versione attuale" msgid "not yet released" msgstr "non ancora pubblicata" + +msgid "Portuguese (Brazil)" +msgstr "Portoghese (Brasile)" + +msgid "This is a note" +msgstr "Questa è una nota" + +msgid "Freezer" +msgstr "Congelatore" + +msgid "Hungarian" +msgstr "" + +msgid "Slovak" +msgstr "" diff --git a/localization/it/stock_transaction_types.po b/localization/it/stock_transaction_types.po index feee29eb..f357d6ce 100644 --- a/localization/it/stock_transaction_types.po +++ b/localization/it/stock_transaction_types.po @@ -1,5 +1,5 @@ # Translators: -# Bernd Bestel , 2019 +# Antonino Ursino , 2020 # msgid "" msgstr "" @@ -7,7 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Bernd Bestel , 2019\n" +"Last-Translator: Antonino Ursino , 2020\n" "Language-Team: Italian (https://www.transifex.com/grocy/teams/93189/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,13 +17,28 @@ msgstr "" "X-Domain: grocy/stock_transaction_types\n" msgid "purchase" -msgstr "Acquista" +msgstr "comprare" + +msgid "transfer_from" +msgstr "trasferito_da" + +msgid "transfer_to" +msgstr "trasferito_a" msgid "consume" -msgstr "Consumare" +msgstr "consumare" msgid "inventory-correction" -msgstr "Correzione dell'inventario" +msgstr "rettifica-inventario" msgid "product-opened" -msgstr "Prodotto aperto" +msgstr "prodotto-aperto" + +msgid "stock-edit-old" +msgstr "modifica-dispensa-vecchio" + +msgid "stock-edit-new" +msgstr "modifica-dispensa-nuovo" + +msgid "self-production" +msgstr "auto-produzione" diff --git a/localization/it/strings.po b/localization/it/strings.po index 83a1a898..63b8f237 100644 --- a/localization/it/strings.po +++ b/localization/it/strings.po @@ -3,7 +3,7 @@ # Bernd Bestel , 2019 # Matteo Piotto , 2019 # Matteo Parolin , 2019 -# Antonino Ursino , 2019 +# Antonino Ursino , 2020 # msgid "" msgstr "" @@ -11,7 +11,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Antonino Ursino , 2019\n" +"Last-Translator: Antonino Ursino , 2020\n" "Language-Team: Italian (https://www.transifex.com/grocy/teams/93189/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,7 +41,8 @@ msgstr[1] "%s prodotti sono già scaduti" msgid "%s product is below defined min. stock amount" msgid_plural "%s products are below defined min. stock amount" msgstr[0] "%s prodotto sotto la quantità minima di dispensa definita" -msgstr[1] "%s prodotti sono sotto la quantità minima di dispensa definita" +msgstr[1] "" +"%s prodotti sono al di sotto della quantità minima di dispensa definita" msgid "Product" msgstr "Prodotto" @@ -978,12 +979,12 @@ msgid "Mark %1$s of %2$s as open" msgstr "Segna %1$s di %2$s come aperti" msgid "" -"When a product was marked as opened, the best before date will be replaced " -"by today + this amount of days (a value of 0 disables this)" +"When this product was marked as opened, the best before date will be " +"replaced by today + this amount of days (a value of 0 disables this)" msgstr "" -"Quando un prodotto è stato contrassegnato come aperto, la data di scadenza " -"verrà sostituita con oggi + questo numero di giorni (un valore di 0 lo " -"disabilita)" +"Quando questo prodotto è stato contrassegnato come aperto, la data di " +"scadenza verrà sostituita con: \"oggi\" + \"questo numero di giorni\" (il " +"valore 0 disabilita)" msgid "Default best before days after opened" msgstr "Giorni di scadenza predefiniti dopo l'apertura" @@ -994,9 +995,6 @@ msgstr "Segnato %1$s di %2$s come aperti" msgid "Mark as opened" msgstr "Segna come aperto" -msgid "Expires on %1$s; Bought on %2$s" -msgstr "Scade il %1$s; Comprato il %2$s" - msgid "Not opened" msgstr "Non aperto" @@ -1312,6 +1310,9 @@ msgstr "Non abbastanza in dispensa" msgid "Expiring soon days" msgstr "In scadenza tra pochi giorni" +msgid "Default location" +msgstr "Posizione predefinita" + msgid "Default amount for purchase" msgstr "Quantità predefinita per l'acquisto" @@ -1751,3 +1752,177 @@ msgid "" msgstr "" "Questo significa che la prossima esecuzione di questa faccenda dovrebbe " "essere programmata solo ogni %s anni" + +msgid "Transfer" +msgstr "Trasferire" + +msgid "From location" +msgstr "Dalla posizione" + +msgid "To location" +msgstr "Alla posizione" + +msgid "There are no units available at this location" +msgstr "Non ci sono unità disponibili in questa posizione" + +msgid "Amount: %1$s; Expires on %2$s; Bought on %3$s" +msgstr "Quantità: %1$s; Scade il: %2$s; Comprato il: %3$s" + +msgid "Transfered %1$s of %2$s from %3$s to %4$s" +msgstr "Trasferiti %1$s di %2$s da %3$s a %4$s" + +msgid "Show stock entries" +msgstr "Mostra voci di dispensa" + +msgid "Stock entries" +msgstr "Voci di dispensa" + +msgid "Best before date" +msgstr "Data di scadenza" + +msgid "Purchased date" +msgstr "Data di acquisto" + +msgid "Consume all %s for this stock entry" +msgstr "Consuma tutte le %s per questa voce di dispensa" + +msgid "The amount cannot be lower than %1$s" +msgstr "La quantità non può essere inferiore a %1$s" + +msgid "Stock entry successfully updated" +msgstr "Voce di dispensa aggiornata correttamente" + +msgid "Edit stock entry" +msgstr "Modifica voce di dispensa" + +msgid "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" +msgstr "" +"L'accesso alla videocamera è possibile solo se supportato e consentito dal " +"browser e quando grocy è connesso tramite una connessione sicura (https://)" + +msgid "Keep screen on" +msgstr "Mantieni lo schermo acceso" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "" +"Mantieni lo schermo acceso mentre visualizzi una \"scheda a schermo intero\"" + +msgid "A purchased date is required" +msgstr "È richiesta la data di acquisto" + +msgid "" +"When a product is selected, one unit (per serving in purchase quantity unit)" +" will be added to stock on consuming this recipe" +msgstr "" +"Quando viene selezionato un prodotto, un'unità (per porzione nell'unità di " +"quantità di acquisto) verrà aggiunta alla dispensa consumando questa ricetta" +" " + +msgid "Produces product" +msgstr "Produce prodotto" + +msgid "This booking cannot be undone" +msgstr "Questa prenotazione non può essere annullata" + +msgid "Booking does not exist or was already undone" +msgstr "La prenotazione non esiste o è stata già annullata" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "Eliminare la chiave API \"%s\"?" + +msgid "Add note" +msgstr "Aggiungi nota" + +msgid "Add note to %s" +msgstr "Aggiungi nota a %s" + +msgid "per day" +msgstr "al giorno" + +msgid "Compact view" +msgstr "Vista compatta" + +msgid "Normal view" +msgstr "Vista normale" + +msgid "Only undone items" +msgstr "Solo oggetti annullati" + +msgid "Add product" +msgstr "Aggiungi prodotto" + +msgid "Add product to %s" +msgstr "Aggiungi prodotto a %s" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" +"Consuma tutti gli ingredienti necessari per ricette o prodotti di questa " +"settimana" + +msgid "Meal plan recipe" +msgstr "Ricetta del Piano dei pasti" + +msgid "Meal plan note" +msgstr "Nota del Piano dei pasti" + +msgid "Meal plan product" +msgstr "Prodotto del Piano dei pasti" + +msgid "Scan mode" +msgstr "Modalità di scansione" + +msgid "on" +msgstr "accesa" + +msgid "off" +msgstr "spenta" + +msgid "" +"Scan mode is on but not all required fields could be populated automatically" +msgstr "" +"La modalità di scansione è attiva ma non è possibile compilare " +"automaticamente tutti i campi richiesti" + +msgid "Is freezer" +msgstr "È congelato" + +msgid "" +"When moving products from/to a freezer location, the products best before " +"date is automatically adjusted according to the product settings" +msgstr "" +"Quando si spostano i prodotti da/verso un congelatore, la data di scadenza " +"dei prodotti viene regolata automaticamente in base alle impostazioni del " +"prodotto" + +msgid "" +"On moving this product to a freezer location (so when freezing it), the best" +" before date will be replaced by today + this amount of days" +msgstr "" +"Spostando questo prodotto in una posizione di congelatore (quindi quando lo " +"si congela), la data di scadenza verrà sostituita con: \"oggi\" + \"questa " +"quantità di giorni\"" + +msgid "Default best before days after freezing" +msgstr "Data di scadenza predefinita dopo il congelamento" + +msgid "" +"On moving this product from a freezer location (so when thawing it), the " +"best before date will be replaced by today + this amount of days" +msgstr "" +"Quando si sposta questo prodotto da una posizione del congelatore (quindi " +"quando lo si scongela), la data di scadenza verrà sostituita con: \"oggi\" +" +" \"questa quantità di giorni\"" + +msgid "Default best before days after thawing" +msgstr "Data di scadenza predefinita dopo lo scongelamento" + +msgid "This cannot be the same as the \"From\" location" +msgstr "Non può essere uguale alla posizione \"Da\"" + +msgid "Thawed" +msgstr "Scongelato" + +msgid "Frozen" +msgstr "Congelato" diff --git a/localization/it/userfield_types.po b/localization/it/userfield_types.po index ce28436f..f2775e65 100644 --- a/localization/it/userfield_types.po +++ b/localization/it/userfield_types.po @@ -1,5 +1,5 @@ # Translators: -# Antonino Ursino , 2019 +# Antonino Ursino , 2020 # msgid "" msgstr "" @@ -7,7 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:43+0000\n" -"Last-Translator: Antonino Ursino , 2019\n" +"Last-Translator: Antonino Ursino , 2020\n" "Language-Team: Italian (https://www.transifex.com/grocy/teams/93189/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,4 +44,4 @@ msgid "preset-checklist" msgstr "Lista di controllo predefinita" msgid "link" -msgstr "collegamento" +msgstr "Collegamento" diff --git a/localization/nl/chore_assignment_types.po b/localization/nl/chore_assignment_types.po index ef2ad59d..457cce96 100644 --- a/localization/nl/chore_assignment_types.po +++ b/localization/nl/chore_assignment_types.po @@ -1,3 +1,6 @@ +# Translators: +# Kees van Nieuwenhuijzen , 2019 +# Daniel Polders , 2020 # msgid "" msgstr "" @@ -5,6 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-09-17 10:45+0000\n" +"Last-Translator: Daniel Polders , 2020\n" "Language-Team: Dutch (https://www.transifex.com/grocy/teams/93189/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,13 +18,13 @@ msgstr "" "X-Domain: grocy/chore_assignment_types\n" msgid "no-assignment" -msgstr "" +msgstr "niet-toegewezen" msgid "who-least-did-first" -msgstr "" +msgstr "wie-minst-gedaan-heeft-eerst" msgid "random" -msgstr "" +msgstr "willekeurig" msgid "in-alphabetical-order" -msgstr "" +msgstr "in-alfabetische-volgorde" diff --git a/localization/nl/chore_period_types.po b/localization/nl/chore_period_types.po index ec449892..9f27d761 100644 --- a/localization/nl/chore_period_types.po +++ b/localization/nl/chore_period_types.po @@ -1,6 +1,5 @@ # Translators: -# Bernd Bestel , 2019 -# Engelbert Mercelis , 2019 +# Daniel Polders , 2020 # msgid "" msgstr "" @@ -8,7 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Engelbert Mercelis , 2019\n" +"Last-Translator: Daniel Polders , 2020\n" "Language-Team: Dutch (https://www.transifex.com/grocy/teams/93189/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,16 +17,19 @@ msgstr "" "X-Domain: grocy/chore_types\n" msgid "manually" -msgstr "Handmatig" +msgstr "handmatig" msgid "dynamic-regular" -msgstr "Dynamisch-regelmatig" +msgstr "dynamisch-regelmatig" msgid "daily" -msgstr "Dagelijks" +msgstr "dagelijks" msgid "weekly" -msgstr "Wekelijks" +msgstr "wekelijks" msgid "monthly" -msgstr "Maandelijks" +msgstr "maandelijks" + +msgid "yearly" +msgstr "jaarlijks" diff --git a/localization/nl/demo_data.po b/localization/nl/demo_data.po index a6bfb4aa..e8849055 100644 --- a/localization/nl/demo_data.po +++ b/localization/nl/demo_data.po @@ -1,11 +1,13 @@ # Translators: -# Llewy , 2019 # Adriaan Peeters , 2019 # Grocy NL, 2019 # Seppe , 2019 # Engelbert Mercelis , 2019 # Niels Tholenaar , 2019 # Frank Klaassen , 2019 +# gggg , 2019 +# Kees van Nieuwenhuijzen , 2019 +# Llewy , 2019 # msgid "" msgstr "" @@ -13,7 +15,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Frank Klaassen , 2019\n" +"Last-Translator: Llewy , 2019\n" "Language-Team: Dutch (https://www.transifex.com/grocy/teams/93189/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,7 +82,7 @@ msgid "Eggs" msgstr "Eieren" msgid "Noodles" -msgstr "Noodles" +msgstr "Noedels" msgid "Pickles" msgstr "Augurken" @@ -166,9 +168,6 @@ msgstr "Duits" msgid "Italian" msgstr "Italiaans" -msgid "Demo in different language" -msgstr "Demo in een andere taal" - msgid "This is the note content of the recipe ingredient" msgstr "Dit is de inhoud van de opmerking van het recept-ingrediënt" @@ -199,7 +198,7 @@ msgid "Projects" msgstr "Projecten" msgid "Repair the garage door" -msgstr "Herstel de garagepoort" +msgstr "De garagedeur repareren" msgid "Fork and improve grocy" msgstr "Fork en verbeter grocy" @@ -217,7 +216,7 @@ msgid "Tinned food" msgstr "Ingeblikt voedsel" msgid "Butchery products" -msgstr "Slagerij producten" +msgstr "Vleeswaren" msgid "Vegetables/Fruits" msgstr "Groenten/Fruit" @@ -289,27 +288,66 @@ msgid "Polish" msgstr "Pools" msgid "Milk Chocolate" -msgstr "" +msgstr "Melk Chocolade" msgid "Dark Chocolate" -msgstr "" +msgstr "Pure Chocolade" msgid "Slice" msgid_plural "Slices" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Punt" +msgstr[1] "Puntjes" msgid "Example userentity" -msgstr "" +msgstr "Voorbeeld gebruikersentiteit" msgid "This is an example user entity..." -msgstr "" +msgstr "Dit is een voorbeeld van een gebruikers entiteit......" msgid "Custom field" -msgstr "" +msgstr "Custom veld" msgid "Example field value..." -msgstr "" +msgstr "Voorbeeld veld waarde...." msgid "Waffle rolls" +msgstr "Wafel rollen" + +msgid "Danish" +msgstr "Deens" + +msgid "Dutch" +msgstr "Nederlands" + +msgid "Norwegian" +msgstr "Norwegen" + +msgid "Demo" +msgstr "Demo" + +msgid "Stable version" +msgstr "Stabiele versie" + +msgid "Preview version" +msgstr "Preview versie" + +msgid "current release" +msgstr "Huidige versie" + +msgid "not yet released" +msgstr "Nog niet uitgegeven" + +msgid "Portuguese (Brazil)" +msgstr "Portugees (Brazilië)" + +msgid "This is a note" +msgstr "" + +msgid "Freezer" +msgstr "" + +msgid "Hungarian" +msgstr "" + +msgid "Slovak" msgstr "" diff --git a/localization/nl/stock_transaction_types.po b/localization/nl/stock_transaction_types.po index ad086a82..16f2ca80 100644 --- a/localization/nl/stock_transaction_types.po +++ b/localization/nl/stock_transaction_types.po @@ -1,5 +1,6 @@ # Translators: # Bernd Bestel , 2019 +# Boding Clockchain , 2020 # msgid "" msgstr "" @@ -7,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Bernd Bestel , 2019\n" +"Last-Translator: Boding Clockchain , 2020\n" "Language-Team: Dutch (https://www.transifex.com/grocy/teams/93189/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +20,12 @@ msgstr "" msgid "purchase" msgstr "Aankoop" +msgid "transfer_from" +msgstr "Overdragen van" + +msgid "transfer_to" +msgstr "Overdragen naar" + msgid "consume" msgstr "Consumeren" @@ -27,3 +34,12 @@ msgstr "Voorraadcorrectie" msgid "product-opened" msgstr "Product geopend" + +msgid "stock-edit-old" +msgstr "Bewerk oude voorraad" + +msgid "stock-edit-new" +msgstr "Bewerk oude voorraad" + +msgid "self-production" +msgstr "Eigen gemaakt" diff --git a/localization/nl/strings.po b/localization/nl/strings.po index 10c9dcd3..2a43a66f 100644 --- a/localization/nl/strings.po +++ b/localization/nl/strings.po @@ -1,10 +1,18 @@ # Translators: # Llewy , 2019 -# Tarik Faik , 2019 # Adriaan Peeters , 2019 # Grocy NL, 2019 # Seppe , 2019 # Bernd Bestel , 2019 +# Jelte L , 2019 +# Tarik Faik , 2019 +# Glenn Delmotte , 2019 +# Niels Tholenaar , 2019 +# Frank Klaassen , 2019 +# Kees van Nieuwenhuijzen , 2019 +# gggg , 2019 +# Boding Clockchain , 2020 +# Daniel Polders , 2020 # msgid "" msgstr "" @@ -12,7 +20,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Bernd Bestel , 2019\n" +"Last-Translator: Daniel Polders , 2020\n" "Language-Team: Dutch (https://www.transifex.com/grocy/teams/93189/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,46 +34,46 @@ msgstr "Voorraadoverzicht" msgid "%s product expires" msgid_plural "%s products expiring" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%sproduct verloopt" +msgstr[1] "%s producten verlopen" msgid "within the next day" msgid_plural "within the next %s days" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "tussen nu en morgen" +msgstr[1] "in de komende %s dagen" msgid "%s product is already expired" msgid_plural "%s products are already expired" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s product is al verlopen" +msgstr[1] "%s producten zijn al verlopen" msgid "%s product is below defined min. stock amount" msgid_plural "%s products are below defined min. stock amount" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s product onder min. voorraadhoeveelheid" +msgstr[1] "%s producten onder min. voorraadhoeveelheid" msgid "Product" msgstr "Product" msgid "%s Product" msgid_plural "%s Products" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s Product" +msgstr[1] "%s Producten" msgid "Amount" -msgstr "Aantal" +msgstr "Hoeveelheid" msgid "Next best before date" -msgstr "De eerstvolgende houdbaarheidsdatum" +msgstr "Eerstvolgende houdbaarheidsdatum" msgid "Logout" msgstr "Uitloggen" msgid "Chores overview" -msgstr "Overzicht klusjes" +msgstr "Overzicht klussen" msgid "Batteries overview" -msgstr "Batterijen overzicht" +msgstr "Overzicht batterijen" msgid "Purchase" msgstr "Aankoop" @@ -80,7 +88,7 @@ msgid "Shopping list" msgstr "Boodschappenlijst" msgid "Chore tracking" -msgstr "Klusjes volgen" +msgstr "Klussen volgen" msgid "Battery tracking" msgstr "Batterij volgen" @@ -89,10 +97,10 @@ msgid "Locations" msgstr "Locaties" msgid "Quantity units" -msgstr "Aantal eenheden" +msgstr "Hoeveelheidseenheden" msgid "Chores" -msgstr "Klusjes" +msgstr "Klussen" msgid "Batteries" msgstr "Batterijen" @@ -101,7 +109,7 @@ msgid "Chore" msgstr "Klus" msgid "Next estimated tracking" -msgstr "" +msgstr "Volgende geschatte opvolging" msgid "Last tracked" msgstr "Laatst gevolgd" @@ -116,7 +124,7 @@ msgid "Next planned charge cycle" msgstr "Volgende geplande laadcyclus" msgid "Best before" -msgstr "Houdbaar tot" +msgstr "Tenminste houdbaar tot" msgid "OK" msgstr "OK" @@ -137,10 +145,10 @@ msgid "Last used" msgstr "Laatst gebruikt" msgid "Spoiled" -msgstr "Verspild" +msgstr "Bedorven" msgid "Barcode lookup is disabled" -msgstr "Opzoeken op streepjescode is uitgeschakeld" +msgstr "Zoeken op streepjescode is uitgeschakeld" msgid "" "will be added to the list of barcodes for the selected product on submit" @@ -149,7 +157,7 @@ msgstr "" "product" msgid "New amount" -msgstr "Nieuwe aantal" +msgstr "Nieuwe hoeveelheid" msgid "Note" msgstr "Notitie" @@ -191,13 +199,13 @@ msgid "Min. stock amount" msgstr "Min. voorraadhoeveelheid" msgid "QU purchase" -msgstr "QU aankoop" +msgstr "HE aankoop" msgid "QU stock" -msgstr "QU Stock" +msgstr "HE vooraad" msgid "QU factor" -msgstr "QU factor" +msgstr "HE-factor" msgid "Description" msgstr "Omschrijving" @@ -206,28 +214,28 @@ msgid "Create product" msgstr "Maak een product" msgid "Barcode(s)" -msgstr "Barcode(s)" +msgstr "Streepjescode(s)" msgid "Minimum stock amount" msgstr "Minimale voorraadhoeveelheid" msgid "Default best before days" -msgstr "Standaard houdbaarheidsdatum" +msgstr "Standaard houdbaarheidsdata" msgid "Quantity unit purchase" -msgstr "Aankoop aantal eenheden " +msgstr "Aankoopeenheid" msgid "Quantity unit stock" -msgstr "Voorraad aantal eenheden" +msgstr "Voorraadeenheid" msgid "Factor purchase to stock quantity unit" -msgstr "" +msgstr "Factor van aankoop- naar voorraadeenheid" msgid "Create location" msgstr "Maak een locatie" msgid "Create quantity unit" -msgstr "Maak eenheidseenheid" +msgstr "Maak hoeveelheidseenheid" msgid "Period type" msgstr "Periode type" @@ -263,7 +271,7 @@ msgid "Record data" msgstr "Gegevens opslaan" msgid "Manage master data" -msgstr "Beheer master data" +msgstr "Beheer masterdata" msgid "This will apply to added products" msgstr "Dit zal toegepast worden op toegevoegde producten" @@ -272,18 +280,19 @@ msgid "never" msgstr "nooit" msgid "Add products that are below defined min. stock amount" -msgstr "Voeg producten toe die onder het gedefinieerde min. voorraad zijn" +msgstr "Voeg producten toe die onder min. voorraadhoeveelheid zijn" msgid "" "For purchases this amount of days will be added to today for the best before" " date suggestion" msgstr "" -"Voor aankopen wordt dit aantal dagen toegevoegd aan vandaag voor de " -"houdbaarheidsdatum suggestie" +"Bij aankopen wordt dit aantal dagen toegevoegd aan vandaag voor de THT-" +"suggestie" -msgid "This means 1 %s purchased will be converted into %s %s in stock" +msgid "This means 1 %1$s purchased will be converted into %2$s %3$s in stock" msgstr "" -"Dit betekent dat 1 %s aankoop geconverteerd zal worden in %s en %s voorraad" +"Dit betekent dat 1 %1$s aankoop geconverteerd zal worden in %2$s en %3$s " +"voorraad" msgid "Login" msgstr "Login" @@ -307,7 +316,7 @@ msgid "No" msgstr "Nee" msgid "Are you sure to delete chore \"%s\"?" -msgstr "Ben je zeker dat je taak \"%s\" wilt verwijderen?" +msgstr "Ben je zeker dat je klus \"%s\" wilt verwijderen?" msgid "\"%s\" could not be resolved to a product, how do you want to proceed?" msgstr "\"%s\" kon niet aan een product gelinkt worden, hoe wil je verder gaan?" @@ -367,12 +376,14 @@ msgid "This means %s will be removed from stock" msgstr "%s zal worden verwijderd uit de voorraad" msgid "" -"This means it is estimated that a new execution of this chore is tracked %s " -"days after the last was tracked" +"This means the next execution of this chore is scheduled %s days after the " +"last execution" msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus %s dagen na de " +"laatste uitvoering is gepland." -msgid "Removed %s %s of %s from stock" -msgstr "%s %s van %s verwijderd uit de voorraad" +msgid "Removed %1$s of %2$s from stock" +msgstr "%1$s %2$s verwijderd uit de voorraad" msgid "About grocy" msgstr "Over grocy" @@ -383,38 +394,35 @@ msgstr "Sluit" msgid "Released on" msgstr "Vrijgegeven op" -msgid "Consume %s %s of %s" -msgstr "Consumeer %s %s van %s" +msgid "Added %1$s of %2$s to stock" +msgstr "%1$s van %2$s toegevoegd aan de voorraad" -msgid "Added %s %s of %s to stock" -msgstr "Voeg %s %s van %s toe aan voorraad" +msgid "Stock amount of %1$s is now %2$s" +msgstr "Van %1$s is er nu %2$s in voorraad" -msgid "Stock amount of %s is now %s %s" -msgstr "Vooraad van %s is nu %s %s" +msgid "Tracked execution of chore %1$s on %2$s" +msgstr "Bijgehouden uitvoering van klus %1$s op %2$s" -msgid "Tracked execution of chore %s on %s" -msgstr "" - -msgid "Tracked charge cycle of battery %s on %s" -msgstr "" +msgid "Tracked charge cycle of battery %1$s on %2$s" +msgstr "Bijgehouden laadcyclus van batterij %1$sop %2$s" msgid "Consume all %s which are currently in stock" -msgstr "" +msgstr "Consumeer alle %s op voorraad" msgid "All" msgstr "Alle" msgid "Track charge cycle of battery %s" -msgstr "" +msgstr "Volg laadcyclus van de batterij %s" msgid "Track execution of chore %s" -msgstr "" +msgstr "Volg de uitvoering van de klus %s" msgid "Filter by location" msgstr "Filteren op locatie" msgid "Search" -msgstr "Zoek" +msgstr "Zoeken" msgid "Not logged in" msgstr "Niet ingelogd" @@ -423,16 +431,16 @@ msgid "You have to select a product" msgstr "Je moet een product selecteren" msgid "You have to select a chore" -msgstr "Je moet een klusje selecteren" +msgstr "Je moet een klus selecteren" msgid "You have to select a battery" msgstr "Je moet een batterij selecteren" msgid "A name is required" -msgstr "Een naam is verplicht" +msgstr "Een naam is vereist" msgid "A location is required" -msgstr "Een locatie is verplicht" +msgstr "Een locatie is vereist" msgid "The amount cannot be lower than %s" msgstr "De hoeveelheid kan niet lager zijn dan %s" @@ -441,13 +449,13 @@ msgid "This cannot be negative" msgstr "Dit kan niet negatief zijn" msgid "A quantity unit is required" -msgstr "Een hoeveelheidseenheid is verplicht" +msgstr "Een hoeveelheidseenheid is vereist" msgid "A period type is required" -msgstr "Een periode type is verplicht" +msgstr "Een periodetype is vereist" msgid "A best before date is required" -msgstr "Een THT is verplicht" +msgstr "Een THT-datum is vereist" msgid "Settings" msgstr "Instellingen" @@ -502,7 +510,10 @@ msgid "" msgid_plural "" "Not enough in stock, %s ingredients missing but already on the shopping list" msgstr[0] "" +"Niet genoeg op voorraad, %s ontbreekt en staat al op de boodschappenlijst" msgstr[1] "" +"Niet genoeg in voorraad, %s ingrediënten ontbreken en staan al op de " +"boodschappenlijst" msgid "Expand to fullscreen" msgstr "Fullscreen" @@ -511,12 +522,12 @@ msgid "Ingredients" msgstr "Ingrediënten" msgid "Preparation" -msgstr "Voorbereiding" +msgstr "Bereiding" msgid "Recipe" msgstr "Recept" -msgid "Not enough in stock, %s missing, %s already on shopping list" +msgid "Not enough in stock, %1$s missing, %2$s already on shopping list" msgstr "Niet genoeg op voorraad, %s ontbreekt, %s al op de boodschappenlijst" msgid "Show notes" @@ -584,7 +595,7 @@ msgid "Filter by chore" msgstr "Filteren op klus" msgid "Chores journal" -msgstr "Klusjesdagboek" +msgstr "Klussendagboek" msgid "0 means suggestions for the next charge cycle are disabled" msgstr "" @@ -597,7 +608,7 @@ msgid "Last price" msgstr "Laatste prijs" msgid "Price history" -msgstr "Prijs geschiedenis" +msgstr "Prijsgeschiedenis" msgid "No price history available" msgstr "Geen prijsgeschiedenis beschikbaar" @@ -616,28 +627,28 @@ msgstr "Eenheid" msgid "%s Unit" msgid_plural "%s Units" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%seenheid" +msgstr[1] "%seenheden" msgid "%s chore is due to be done" msgid_plural "%s chores are due to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%sklusje is om uitgevoerd te worden" +msgstr[1] "%sklussen moeten worden gedaan" msgid "%s chore is overdue to be done" msgid_plural "%s chores are overdue to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%sklus moet nog gedaan worden" +msgstr[1] "%sklussen moeten nog steeds gedaan worden" msgid "%s battery is due to be charged" msgid_plural "%s batteries are due to be charged" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Er moet %s batterij opgeladen worden" +msgstr[1] "Er moeten %s batterijen opgeladen worden" msgid "%s battery is overdue to be charged" msgid_plural "%s batteries are overdue to be charged" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s batterij moet nog opgeladen worden" +msgstr[1] "%sbatterijen moeten nog opgeladen worden" msgid "in singular form" msgstr "In enkelvoud" @@ -649,7 +660,7 @@ msgid "This cannot be lower than %s" msgstr "Dit kan niet lager zijn dan %s" msgid "-1 means that this product never expires" -msgstr "-1 wilt zeggen dat het product noot vervalt" +msgstr "-1 wil zeggen dat het product nooit vervalt" msgid "Quantity unit" msgstr "Hoeveelheidseenheid" @@ -658,11 +669,16 @@ msgid "" "Only check if a single unit is in stock (a different quantity can then be " "used above)" msgstr "" +"Controleer alleen of een enkele eenheid op voorraad is (een andere " +"hoeveelheid kan dan hierboven worden gebruikt)" msgid "" "Are you sure to consume all ingredients needed by recipe \"%s\" (ingredients" " marked with \"check only if a single unit is in stock\" will be ignored)?" msgstr "" +"Weet je zeker dat je alle ingrediënten gebruikt die nodig zijn voor het " +"recept \"%s\" (ingrediënten gemarkeerd met \"controleer alleen als een " +"enkele eenheid op voorraad is\" worden genegeerd)?" msgid "Removed all ingredients of recipe \"%s\" from stock" msgstr "Alle ingrediënten van recept \"%s\" uit voorraad verwijderd" @@ -680,7 +696,7 @@ msgid "Error details" msgstr "Error details" msgid "Tasks" -msgstr "Klusjes" +msgstr "Taken" msgid "Show done tasks" msgstr "Toon afgewerkte klusjes" @@ -701,13 +717,13 @@ msgid "Uncategorized" msgstr "Ongecategoriseerd" msgid "Task categories" -msgstr "Klusjescategorieën" +msgstr "Taakcategorieën" msgid "Create task" -msgstr "Maak klus" +msgstr "Maak taak" msgid "A due date is required" -msgstr "" +msgstr "Een vervaldatum is vereist" msgid "Category" msgstr "Categorie" @@ -716,20 +732,20 @@ msgid "Edit task" msgstr "Bewerk taak" msgid "Are you sure to delete task \"%s\"?" -msgstr "" +msgstr "Weet u zeker dat u taak \"%s\" wilt verwijderen?" msgid "%s task is due to be done" msgid_plural "%s tasks are due to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%staak moet uitgevoerd worden" +msgstr[1] "%staken moeten uitgevoerd worden" msgid "%s task is overdue to be done" msgid_plural "%s tasks are overdue to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%staak moet nog uitgevoerd worden" +msgstr[1] "%staken moeten nog uitgevoerd worden" msgid "Edit task category" -msgstr "Bewerk kluscategorie" +msgstr "Bewerk taakcategorie" msgid "Create task category" msgstr "Maak kluscategorie" @@ -762,7 +778,7 @@ msgid "Filter by status" msgstr "Filteren op status" msgid "Below min. stock amount" -msgstr "Onder min. stock hoeveelheid" +msgstr "Onder min. voorraadhoeveelheid" msgid "Expiring soon" msgstr "Vervalt binnenkort" @@ -808,10 +824,10 @@ msgstr "Geen bestand geslecteerd" msgid "If you don't select a file, the current picture will not be altered" msgstr "" -"De huidige afbeelding wordt niet gewijzigd als je geen bestand selecteerd" +"De huidige afbeelding wordt niet gewijzigd als je geen bestand selecteert" msgid "Delete" -msgstr "Verwijder" +msgstr "Verwijderen" msgid "The current picture will be deleted when you save the product" msgstr "De huidige afbeelding wordt gewist wanneer je het product opslaat" @@ -826,29 +842,29 @@ msgid "" "This product cannot be deleted because it is in stock, please remove the " "stock amount first." msgstr "" -"Dit product kan niet worden verwijdert want het is in voorraad, verwijder " +"Dit product kan niet worden verwijderd want het is op voorraad, verwijder " "dit eerst uit je voorraad." msgid "Delete not possible" msgstr "Verwijderen niet mogelijk" msgid "Equipment" -msgstr "Toestellen" +msgstr "Apparaten" msgid "Instruction manual" msgstr "Gebruikshandleiding" msgid "The selected equipment has no instruction manual" -msgstr "Het geselecteerde toestel heeft gaan gebruikshandleiding" +msgstr "Het geselecteerde apparaat heeft geen gebruikshandleiding" msgid "Notes" msgstr "Notities" msgid "Edit equipment" -msgstr "Bewerk toestel" +msgstr "Bewerk apparaat" msgid "Create equipment" -msgstr "Maak toestel" +msgstr "Maak apparaat" msgid "" "If you don't select a file, the current instruction manual will not be " @@ -863,8 +879,8 @@ msgstr "Geen gebruikshandleiding beschikbaar" msgid "" "The current instruction manual will be deleted when you save the equipment" msgstr "" -"De huidige gebruikshandleiding zal verwijderd worden wanneer je het toestel " -"opslaat" +"De huidige gebruikshandleiding zal verwijderd worden wanneer je het apparaat" +" opslaat" msgid "No picture available" msgstr "Geen afbeelding beschikbaar" @@ -903,84 +919,83 @@ msgid "Filter by product" msgstr "Filteren op product" msgid "Booking time" -msgstr "" +msgstr "Boekingstijd" msgid "Booking type" -msgstr "" +msgstr "Boekingstype" msgid "Undo booking" -msgstr "" +msgstr "Boeking ongedaan maken" msgid "Undone on" -msgstr "" +msgstr "Ongedaan gemaakt op" msgid "Batteries journal" -msgstr "" +msgstr "Batterijdagboek" msgid "Filter by battery" msgstr "Filteren op batterij" msgid "Undo charge cycle" -msgstr "" +msgstr "Laadcyclus ongedaan maken" msgid "Undo chore execution" -msgstr "" +msgstr "Klus uitvoer ongedaan maken" msgid "Chore execution successfully undone" -msgstr "" +msgstr "Klus uitvoer ongedaan gemaakt" msgid "Undo" msgstr "Ongedaan maken" msgid "Booking successfully undone" -msgstr "" +msgstr "Boeking is ongedaan gemaakt" msgid "Charge cycle successfully undone" -msgstr "" +msgstr "Laadcyclus is ongedaan gemaakt" msgid "This cannot be negative and must be an integral number" msgstr "Dit kan niet negatief zijn en moet een integraal getal zijn" msgid "Disable stock fulfillment checking for this ingredient" -msgstr "" +msgstr "Schakel voorraadcontrole voor dit ingrediënt uit" msgid "Add all list items to stock" -msgstr "Voeg alle lijst items toe aan voorraad" +msgstr "Voeg alle lijstitems toe aan voorraad" -msgid "Add %s %s of %s to stock" -msgstr "Voeg %s %s van %s toe aan voorraad" +msgid "Add %1$s of %2$s to stock" +msgstr "Voeg %1$svan %2$stoe aan voorraad" -msgid "Adding shopping list item %s of %s" -msgstr "" +msgid "Adding shopping list item %1$s of %2$s" +msgstr "Item %1$s van %2$s van boodschappenlijst toevoegen" msgid "Use a specific stock item" -msgstr "Gebruik een specifiek voorraad item" +msgstr "Gebruik een specifiek voorraaditem" msgid "" "The first item in this list would be picked by the default rule which is " "\"First expiring first, then first in first out\"" msgstr "" +"Het eerste item in deze lijst wordt gekozen met de standaardregel: \"Eerst " +"als eerste vervallen, daarna als eerste in de eerste keer\"" -msgid "Mark %s of %s as open" -msgstr "" +msgid "Mark %1$s of %2$s as open" +msgstr "Markeer %1$svan %2$s als open" msgid "" -"When a product was marked as opened, the best before date will be replaced " -"by today + this amount of days (a value of 0 disables this)" +"When this product was marked as opened, the best before date will be " +"replaced by today + this amount of days (a value of 0 disables this)" msgstr "" msgid "Default best before days after opened" msgstr "Standaard houdbaar tot na geopend" -msgid "Marked %s %s of %s as opened" -msgstr "Markeer %s %s van %s als geopend" +msgid "Marked %1$s of %2$s as opened" +msgstr "%1$svan %2$sgemarkeerd als geopend" msgid "Mark as opened" msgstr "Markeer als geopend" -msgid "Expires on %s; Bought on %s" -msgstr "Vervalt op %s; Aangekocht op %s" - msgid "Not opened" msgstr "Niet geopend" @@ -994,10 +1009,10 @@ msgid "Product expires" msgstr "Product vervalt" msgid "Task due" -msgstr "" +msgstr "Klusje open" msgid "Chore due" -msgstr "Klusje tegen" +msgstr "Klus tegen" msgid "Battery charge cycle due" msgstr "Batterij oplaadcyclus nabij" @@ -1009,12 +1024,15 @@ msgid "Stock settings" msgstr "Voorraadinstellingen" msgid "Shopping list to stock workflow" -msgstr "" +msgstr "Boodschappenlijst voor voorraad workflow" msgid "" "Automatically do the booking using the last price and the amount of the " "shopping list item, if the product has \"Default best before days\" set" msgstr "" +"Voer automatisch de boeking uit met behulp van de laatste hoeveelheid en het" +" bedrag van het item in de boodschappenlijst, als het product de instelling " +"\"Standaard THT dagen\" heeft ingesteld" msgid "Skip" msgstr "Overslaan" @@ -1030,9 +1048,12 @@ msgstr "Gebaseerd op de prijs van de laatste aankoop per product" msgid "The ingredients listed here result in this amount of servings" msgstr "" +"De ingrediënten die hier worden vermeld, resulteren in dit aantal porties" msgid "Do not check against the shopping list when adding missing items to it" msgstr "" +"Controleer niet op de boodschappenlijst wanneer u ontbrekende items eraan " +"toevoegt" msgid "" "By default the amount to be added to the shopping list is \"needed amount - " @@ -1040,6 +1061,10 @@ msgid "" "checked against the stock amount, not against what is already on the " "shopping list" msgstr "" +"Standaard is het aantal dat moet worden toegevoegd aan de boodschappenlijst " +"\"benodigde hoeveelheid - voorraadbedrag - aantal bestedingslijsten\" - " +"wanneer dit is ingeschakeld, wordt het alleen vergeleken met het voorraad " +"aantal, niet met wat al op de boodschappenlijst staat" msgid "Picture" msgstr "Afbeelding" @@ -1071,21 +1096,27 @@ msgid "Allow partial units in stock" msgstr "Sta gedeeltelijke eenheden in voorraad toe" msgid "Enable tare weight handling" -msgstr "" +msgstr "Gebruik van tarragewicht afhandelen" msgid "" "This is useful e.g. for flour in jars - on purchase/consume/inventory you " "always weigh the whole jar, the amount to be posted is then automatically " "calculated based on what is in stock and the tare weight defined below" msgstr "" +"Dit is nuttig voor b.v. meel in potten - bij aankoop/consumptie/inventaris " +"weeg je altijd de hele pot, de te boeken hoeveelheid wordt dan automatisch " +"berekend op basis van wat op voorraad is en het tarragewicht hieronder " +"gedefinieerd" msgid "Tare weight" -msgstr "Tarra gewicht" +msgstr "Tarragewicht" msgid "" "Tare weight handling enabled - please weigh the whole container, the amount " "to be posted will be automatically calculcated" msgstr "" +"Tare weight handling ingeschakeld: weeg de hele container af, het te boeken " +"aantal wordt automatisch berekend" msgid "You have to select a location" msgstr "Je moet een locatie selecteren" @@ -1094,26 +1125,26 @@ msgid "List" msgstr "Lijst" msgid "Gallery" -msgstr "Gallerij" +msgstr "Galerij" msgid "The current picture will be deleted when you save the recipe" msgstr "" "De huidige afbeelding zal worden verwijderd wanneer je het recept opslaat." msgid "Show product details" -msgstr "Toon product details" +msgstr "Toon productdetails" msgid "Stock journal for this product" msgstr "Toon dagboek voor dit product" msgid "Show chore details" -msgstr "Toon klus details" +msgstr "Toon klusdetails" msgid "Journal for this chore" msgstr "Dagboek voor deze klus" msgid "Show battery details" -msgstr "Toon batterij details" +msgstr "Toon batterijdetails" msgid "Journal for this battery" msgstr "Dagboek voor deze batterij" @@ -1124,22 +1155,26 @@ msgstr "Systeeminfo" msgid "Changelog" msgstr "Changelog" -msgid "will be multiplied a factor of %s to get %s" -msgstr "wordt vermenigvuldigt met %s om %s te krijgen" +msgid "will be multiplied a factor of %1$s to get %2$s" +msgstr "wordt vermenigvuldigd met een factor %1$s om er %2$s van te krijgen" msgid "The given date is earlier than today, are you sure?" -msgstr "De opgegeven datum is eerder dan vandaag, bent u zeker?" +msgstr "De opgegeven datum is eerder dan vandaag; weet je het zeker?" msgid "Product count" msgstr "Productenteller" msgid "Type a new product name or barcode and hit TAB to start a workflow" msgstr "" +"Typ een nieuwe productnaam of streepjescode en druk op TAB om een workflow " +"te starten" msgid "" "This will be used as the default setting when adding this product as a " "recipe ingredient" msgstr "" +"Dit wordt gebruikt als de standaardinstelling bij het toevoegen van dit " +"product als receptingrediënt" msgid "Add item" msgstr "Voeg item toe" @@ -1154,10 +1189,10 @@ msgid "Delete shopping list" msgstr "Verwijder boodschappenlijst" msgid "Chores settings" -msgstr "" +msgstr "Klusinstellingen" msgid "Batteries settings" -msgstr "" +msgstr "Batterij instellingen" msgid "Tasks settings" msgstr "Taken instellingen" @@ -1169,7 +1204,7 @@ msgid "Are you sure to delete shopping list \"%s\"?" msgstr "Weet je zeker dat je boodschappenlijst %s wilt verwijderen?" msgid "Average shelf life" -msgstr "" +msgstr "Gemiddelde houdbaarheid" msgid "Spoil rate" msgstr "Verspillings gemiddelde" @@ -1180,8 +1215,8 @@ msgstr "Laat meer zien" msgid "Show less" msgstr "Laat minder zien" -msgid "The amount must be between %s and %s" -msgstr "De hoeveelheid moet liggen tussen %s en %s" +msgid "The amount must be between %1$s and %2$s" +msgstr "Het aantal moet tussen %1$sen %2$s zijn" msgid "Day of month" msgstr "Dag van de maand" @@ -1199,13 +1234,13 @@ msgid "Thursday" msgstr "Donderdag" msgid "Friday" -msgstr "rijdag" +msgstr "Vrijdag" msgid "Saturday" msgstr "Zaterdag" msgid "Sunday" -msgstr "ondag" +msgstr "Zondag" msgid "Configure userfields" msgstr "Configureer gebruikersvelden" @@ -1220,7 +1255,7 @@ msgid "Entity" msgstr "Entiteit" msgid "Caption" -msgstr "" +msgstr "Onderschrift" msgid "Type" msgstr "Type" @@ -1229,42 +1264,648 @@ msgid "Create userfield" msgstr "Maak gebruikersveld aan" msgid "A entity is required" -msgstr "Een entiteit is verplicht" +msgstr "Een entiteit is vereist" msgid "A caption is required" -msgstr "" +msgstr "Een beschrijving is vereist" msgid "A type is required" -msgstr "Een type is verplicht" +msgstr "Een type is vereist" msgid "Show as column in tables" msgstr "Laat als kolom zien in tabellen" msgid "This is required and can only contain letters and numbers" -msgstr "Dit is verplicht en kan alleen cijfers en letters bevatten" +msgstr "Dit is vereist en kan alleen cijfers en letters bevatten" msgid "Edit userfield" msgstr "Wijzig gebruikersveld" msgid "Plural forms" -msgstr "" +msgstr "Meervoudsvormen" msgid "One plural form per line, the current language requires" -msgstr "" +msgstr "Een meervoudsvorm per regel, de huidige taal vereist" msgid "Plural count" -msgstr "" +msgstr "Meervoud aantal" msgid "Plural rule" -msgstr "" +msgstr "Meervoudsregel" msgid "in plural form" msgstr "In meervoud" msgid "Not enough in stock, %s ingredient missing" msgid_plural "Not enough in stock, %s ingredients missing" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Niet genoeg op voorraad, %s ingrediënt ontbreekt." +msgstr[1] "Niet genoeg op voorraad, %s ingrediënten ontbreken." -msgid "Consume %s of %s" +msgid "The amount cannot be lower than %1$s or equal %2$s" +msgstr "De hoeveelheid kan niet lager zijn dan %1$s of gelijk zijn aan %2$s" + +msgid "Not enough in stock, but already on the shopping list" +msgstr "Niet genoeg op voorraad, maar al op het boodschappenlijstje" + +msgid "Not enough in stock" +msgstr "Niet genoeg op voorraad" + +msgid "Expiring soon days" +msgstr "Vervalt binnenkort dagen" + +msgid "Default location" +msgstr "Standaardlocatie" + +msgid "Default amount for purchase" +msgstr "Standaardhoeveelheid voor aankoop" + +msgid "Default amount for consume" +msgstr "Standaardhoeveelheid voor consumeren" + +msgid "Variable amount" +msgstr "Variabele hoeveelheid" + +msgid "" +"When this is not empty, it will be shown instead of the amount entered above" +" while the amount there will still be used for stock fulfillment checking" +msgstr "" +"Wanneer dit niet leeg is, wordt dit weergegeven in plaats van de hierboven " +"ingevoerde hoeveelheid, terwijl het aantal daar nog steeds zal worden " +"gebruikt voor controle van de voorraadafhandeling" + +msgid "Track date only" +msgstr "Alleen datum bijhouden" + +msgid "When enabled only the day of an execution is tracked, not the time" +msgstr "" +"Wanneer ingeschakeld, wordt alleen de dag van een uitvoering bijgehouden, " +"niet de tijd" + +msgid "Consume %1$s of %2$s" +msgstr "Consumeer %1$s %2$s" + +msgid "Meal plan" +msgstr "Maaltijdplan" + +msgid "Add recipe to %s" +msgstr "Recept toevoegen aan %s" + +msgid "%s serving" +msgid_plural "%s servings" +msgstr[0] "%s portie" +msgstr[1] "%s porties" + +msgid "Week costs" +msgstr "Weekkosten" + +msgid "Configuration" +msgstr "Configuratie" + +msgid "A predefined list of values, one per line" +msgstr "Een vooraf gedefinieerde lijst met waarden, één per regel" + +msgid "Chores due soon days" +msgstr "Klussen voor de komende dagen" + +msgid "Batteries due to be charged soon days" +msgstr "Batterijen die binnenkort worden opgeladen" + +msgid "Tasks due soon days" +msgstr "Taken die binnenkort worden uitgevoerd" + +msgid "Products" +msgstr "Producten" + +msgid "Marked task %s as completed on %s" +msgstr "Gemarkeerde taak %s voltooid op %s" + +msgid "Booking has subsequent dependent bookings, undo not possible" +msgstr "" +"Boeking heeft latere afhankelijke boekingen, ongedaan maken niet mogelijk" + +msgid "per serving" +msgstr "per portie" + +msgid "Never" +msgstr "Nooit" + +msgid "Today" +msgstr "Vandaag" + +msgid "Consume %1$s of %2$s as spoiled" +msgstr "Consumeer %1$s %2$s als bedorven" + +msgid "Not all ingredients of recipe \"%s\" are in stock, nothing removed" +msgstr "" +"Niet alle ingrediënten van het recept \"%s\" zijn op voorraad, er is niets " +"verwijderd" + +msgid "Undo task \"%s\"" +msgstr "Ongedaan maken taak \"%s\"" + +msgid "Due date rollover" +msgstr "Vervaldatum verlopen" + +msgid "" +"When enabled the chore can never be overdue, the due date will shift forward" +" each day when due" +msgstr "" +"Wanneer de klus ingeschakeld is, kan deze nooit verlopen. De vervaldatum " +"wordt elke dag vooruit geschoven wanneer deze verlopen is." + +msgid "Location Content Sheet" +msgstr "Locatie inhoud pagina" + +msgid "Print" +msgstr "Afdrukken" + +msgid "all locations" +msgstr "alle locaties" + +msgid "" +"Here you can print a page per location with the current stock, maybe to hang" +" it there and note the consumed things on it." +msgstr "" +"Hier kunt u een pagina per locatie afdrukken met de huidige voorraad. " +"Bijvoorbeeld om het daar op te hangen en dan de verbruikte artikelen op te " +"noteren." + +msgid "this location" +msgstr "deze locatie" + +msgid "Consumend amount" +msgstr "Geconsumeerde hoeveelheid" + +msgid "Time of printing" +msgstr "Afdruktijdstip" + +msgid "Are you sure to delete equipment \"%s\"?" +msgstr "Weet je zeker dat je apparaat \"%s\" wilt verwijderen?" + +msgid "Parent product" +msgstr "Parent product" + +msgid "" +"Not possible because this product is already used as a parent product in " +"another product" +msgstr "" +"Niet mogelijk, omdat het product al wordt gebruikt als parent product in een" +" ander product." + +msgid "Default conversions" +msgstr "Standaardconversies" + +msgid "Factor" +msgstr "Factor" + +msgid "1 %s is the same as..." +msgstr "1 %s is hetzelfde als..." + +msgid "Create QU conversion" +msgstr "Maak hoeveelheidseenheidsconversie" + +msgid "Default for QU" +msgstr "Standaard hoeveelheidseenheid" + +msgid "Quantity unit from" +msgstr "Hoeveelheidseenheid vanaf" + +msgid "Quantity unit to" +msgstr "Hoeveelheidseenheid tot" + +msgid "" +"This cannot be lower than %1$s and must be a valid number with max. %2$s " +"decimal places" +msgstr "" +"Dit mag niet lager zijn dan %1$sen moet een geldig getal zijn met max. " +"%2$sdecimalen." + +msgid "This cannot be equal to %s" +msgstr "Dit mag niet gelijk zijn aan %s" + +msgid "This means 1 %1$s is the same as %2$s %3$s" +msgstr "Dit betekent dat 1 %1$s het zelfde is als %2$s%3$s" + +msgid "QU conversions" +msgstr "Hoeveelheidseenheidsconversies" + +msgid "Product overrides" +msgstr "Product overschreden" + +msgid "Override for product" +msgstr "Overschreden van product" + +msgid "This equals %1$s %2$s in stock" +msgstr "Dit komt overeen met %1$s%2$s in voorraad" + +msgid "Edit QU conversion" +msgstr "Wijzig hoeveelheidseenheidsconversies" + +msgid "An assignment type is required" +msgstr "Een opdrachttype is vereist" + +msgid "Assignment type" +msgstr "Opdrachttype" + +msgid "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus 1 dag na de laatste " +"uitvoering is gepland." + +msgid "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution, but only for the weekdays selected below" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus 1 dag na de laatste " +"uitvoering is gepland, maar alleen voor de onderstaand geselecteerde dagen." + +msgid "This means the next execution of this chore is not scheduled" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus niet gepland staat." + +msgid "" +"This means the next execution of this chore is scheduled on the below " +"selected day of each month" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus elke maand gepland " +"staat voor de onderstaand geselecteerde dagen." + +msgid "" +"This means the next execution of this chore will not be assigned to anyone" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus niet meer aan iemand " +"toegewezen staat." + +msgid "" +"This means the next execution of this chore will be assigned to the one who " +"executed it least" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus aan iemand toegewezen " +"wordt die hem het minst heeft uitgevoerd." + +msgid "This means the next execution of this chore will be assigned randomly" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus willekeurig aan iemand" +" toegewezen wordt." + +msgid "" +"This means the next execution of this chore will be assigned to the next one" +" in alphabetical order" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus in alfabetische " +"volgorde aan iemand toegewezen wordt." + +msgid "Assign to" +msgstr "Wijs toe aan" + +msgid "This assignment type requires that at least one is assigned" +msgstr "Voor dit toewijzingstype moet er minstens één worden toegewezen" + +msgid "%s chore is assigned to me" +msgid_plural "%s chores are assigned to me" +msgstr[0] "%s klusje is toegewezen aan mij" +msgstr[1] "%sklussen zijn toegewezen aan mij" + +msgid "Assigned to me" +msgstr "Toegewezen aan mij" + +msgid "assigned to %s" +msgstr "Toegewezen aan %s" + +msgid "Filter by assignment" +msgstr "Filter op toewijzing" + +msgid "Consume product on chore execution" +msgstr "Consumeer product bij uitvoeren klus" + +msgid "Are you sure to delete user field \"%s\"?" +msgstr "Weet u zeker dat u het gebruikersveld %s wilt verwijderen?" + +msgid "Userentities" +msgstr "Gebruikersentiteit" + +msgid "Create userentity" +msgstr "Maak gebruikersentiteit" + +msgid "Show in sidebar menu" +msgstr "Weergeven in zijbalkmenu" + +msgid "Edit userentity" +msgstr "Wijzig gebruikersentiteit" + +msgid "Edit %s" +msgstr "Bewerk %s" + +msgid "Create %s" +msgstr "Maak %s" + +msgid "Are you sure to delete this userobject?" +msgstr "Weet u zeker dat u het gebruikersobject wil verwijderen?" + +msgid "Icon CSS class" +msgstr "Icon CSS class" + +msgid "For example" +msgstr "Bijvoorbeeld" + +msgid "Configure fields" +msgstr "Velden configureren" + +msgid "Quantity unit plural form testing" +msgstr "Hoeveelheidseenheid meervoudsvorm testen" + +msgid "Result" +msgstr "Resultaat" + +msgid "Test plural forms" +msgstr "Test meervoudsvormen" + +msgid "Scan a barcode" +msgstr "Scan een streepjescode" + +msgid "Error while initializing the barcode scanning library" +msgstr "Fout bij het initialiseren van de barcodescanbibliotheek" + +msgid "" +"The resulting price of this ingredient will be multiplied by this factor" +msgstr "" +"De uitkomst van de prijs van dit ingrediënt wordt vermenigvuldigd met deze " +"factor" + +msgid "Price factor" +msgstr "Prijsfactor" + +msgid "Do you find grocy useful?" +msgstr "Vind je grocy handig?" + +msgid "Say thanks" +msgstr "Zeg bedankt" + +msgid "Search for recipes containing this product" +msgstr "Zoek naar recepten met dit product" + +msgid "Add to shopping list" +msgstr "Voeg toe aan boodschappenlijst" + +msgid "Added %1$s of %2$s to the shopping list \"%3$s\"" +msgstr "%1$s %2$s toegevoegd aan boodschappenlijst \"%3$s\"" + +msgid "Output" +msgstr "Uitvoer" + +msgid "Energy (kcal)" +msgstr "Energie (kcal)" + +msgid "Per stock quantity unit" +msgstr "Voorraadhoeveelheidseenheid" + +msgid "Barcode scanner testing" +msgstr "Testen streepjescodescanner" + +msgid "Expected barcode" +msgstr "Verwachte streepjescode" + +msgid "Scan field" +msgstr "Scanveld" + +msgid "Scanned barcodes" +msgstr "Gescande streepjescodes" + +msgid "Hit" +msgstr "Raak" + +msgid "Miss" +msgstr "Mis" + +msgid "Display recipe" +msgstr "Toon recept" + +msgid "Accumulate sub products min. stock amount" +msgstr "Verzamel minimale voorraad sub producten" + +msgid "" +"If enabled, the min. stock amount of sub products will be accumulated into " +"this product, means the sub product will never be \"missing\", only this " +"product" +msgstr "" +"Indien ingeschakeld, de min. voorraad van sub producten zal worden verzameld" +" in dit product, wat betekent dat het sub product nooit zal \"ontbreken\", " +"alleen dit product" + +msgid "Are you sure to remove this conversion?" +msgstr "Weet u zeker dat u deze conversie wilt verwijderen." + +msgid "Unit price" +msgstr "Prijs per eenheid" + +msgid "Total price" +msgstr "Totale prijs" + +msgid "in %s and based on the purchase quantity unit" +msgstr "in %sen gebaseerd op de aankoopshoeveelheidseenheid" + +msgid "Unlimited" +msgstr "Onbegrensd" + +msgid "Clear" +msgstr "Wis" + +msgid "Are you sure to remove the included recipe \"%s\"?" +msgstr "Weet u zeker dat het recept \"%s\" wil toevoegen?" + +msgid "Period interval" +msgstr "Periode interval" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s days" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus, alleen elke %s dagen " +"gepland mag worden. " + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s weeks" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus alleen elke %s weken " +"gepland mag worden. " + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s months" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus alleen elke %s maanden" +" gepland mag worden. " + +msgid "" +"This means the next execution of this chore is scheduled 1 year after the " +"last execution" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus 1 jaar na de laatste " +"uitvoering gepland wordt." + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s years" +msgstr "" +"Dit betekent dat de volgende uitvoering van deze klus alleen elke %s jaar " +"gepland mag worden. " + +msgid "Transfer" +msgstr "Overdragen" + +msgid "From location" +msgstr "Van locatie" + +msgid "To location" +msgstr "Naar locatie" + +msgid "There are no units available at this location" +msgstr "Er zijn geen items beschikbaar op deze locatie" + +msgid "Amount: %1$s; Expires on %2$s; Bought on %3$s" +msgstr "Hoeveelheid: %1$s; Verloopt op %2$s; Gekocht op %3$s" + +msgid "Transfered %1$s of %2$s from %3$s to %4$s" +msgstr "%1$s van %2$s overgedragen van %3$s naar %4$s" + +msgid "Show stock entries" +msgstr "Laat voorraad items zien" + +msgid "Stock entries" +msgstr "Voorraad items" + +msgid "Best before date" +msgstr "Tenminste houdbaar tot" + +msgid "Purchased date" +msgstr "Aangeschafte datum" + +msgid "Consume all %s for this stock entry" +msgstr "Consumeer %s van deze voorraad" + +msgid "The amount cannot be lower than %1$s" +msgstr "De hoeveelheid kan niet lager zijn dan %1$s" + +msgid "Stock entry successfully updated" +msgstr "Voorraad item succesvol geüpdatet" + +msgid "Edit stock entry" +msgstr "Bewerk voorraad item" + +msgid "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" +msgstr "" +"Toegang tot de camera is enkel mogelijk indien dit ondersteund en toegestaan" +" wordt en grocy gebruik maakt van een beveiligde (https://) verbinding" + +msgid "Keep screen on" +msgstr "Houd scherm aan" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "Houd scherm aan bij het weergeven van een \"fullscreen-card\"" + +msgid "A purchased date is required" +msgstr "Een aanschafdatum is vereist" + +msgid "" +"When a product is selected, one unit (per serving in purchase quantity unit)" +" will be added to stock on consuming this recipe" +msgstr "" + +msgid "Produces product" +msgstr "Maakt product" + +msgid "This booking cannot be undone" +msgstr "Deze reservering kan niet ongedaan worden gemaakt" + +msgid "Booking does not exist or was already undone" +msgstr "" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "" + +msgid "Add note" +msgstr "" + +msgid "Add note to %s" +msgstr "" + +msgid "per day" +msgstr "" + +msgid "Compact view" +msgstr "" + +msgid "Normal view" +msgstr "" + +msgid "Only undone items" +msgstr "" + +msgid "Add product" +msgstr "" + +msgid "Add product to %s" +msgstr "" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" + +msgid "Meal plan recipe" +msgstr "" + +msgid "Meal plan note" +msgstr "" + +msgid "Meal plan product" +msgstr "" + +msgid "Scan mode" +msgstr "" + +msgid "on" +msgstr "" + +msgid "off" +msgstr "" + +msgid "" +"Scan mode is on but not all required fields could be populated automatically" +msgstr "" + +msgid "Is freezer" +msgstr "" + +msgid "" +"When moving products from/to a freezer location, the products best before " +"date is automatically adjusted according to the product settings" +msgstr "" + +msgid "" +"On moving this product to a freezer location (so when freezing it), the best" +" before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after freezing" +msgstr "" + +msgid "" +"On moving this product from a freezer location (so when thawing it), the " +"best before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after thawing" +msgstr "" + +msgid "This cannot be the same as the \"From\" location" +msgstr "" + +msgid "Thawed" +msgstr "" + +msgid "Frozen" msgstr "" diff --git a/localization/nl/userfield_types.po b/localization/nl/userfield_types.po index da5b9a4d..ed43931c 100644 --- a/localization/nl/userfield_types.po +++ b/localization/nl/userfield_types.po @@ -1,6 +1,7 @@ # Translators: -# Bernd Bestel , 2019 # Mitchel Nijkamp , 2019 +# Kees van Nieuwenhuijzen , 2019 +# Daniel Polders , 2020 # msgid "" msgstr "" @@ -8,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:43+0000\n" -"Last-Translator: Mitchel Nijkamp , 2019\n" +"Last-Translator: Daniel Polders , 2020\n" "Language-Team: Dutch (https://www.transifex.com/grocy/teams/93189/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,25 +19,31 @@ msgstr "" "X-Domain: grocy/userfield_types\n" msgid "text-single-line" -msgstr "Tekst (één regel)" +msgstr "tekst (één regel)" msgid "text-multi-line" -msgstr "Tekst (meerdere regels)" +msgstr "tekst (meerdere regels)" msgid "number-integral" -msgstr "Number (héél getal)" +msgstr "nummer (héél getal)" msgid "number-decimal" -msgstr "Nummer (decimaal)" +msgstr "nummer (decimaal)" msgid "date" -msgstr "Getal (zonder tijd)" +msgstr "datum" msgid "datetime" -msgstr "Datum en tijd" +msgstr "datum en tijd" msgid "checkbox" -msgstr "Checkbox" +msgstr "selectievak" msgid "preset-list" msgstr "vooringestelde lijst" + +msgid "preset-checklist" +msgstr "vooringestelde-lijst" + +msgid "link" +msgstr "koppeling" diff --git a/localization/no/demo_data.po b/localization/no/demo_data.po index 09e7a659..1b2c898a 100644 --- a/localization/no/demo_data.po +++ b/localization/no/demo_data.po @@ -1,6 +1,6 @@ # Translators: # Bernd Bestel , 2019 -# Marius Borø , 2019 +# Marius Borø , 2020 # msgid "" msgstr "" @@ -8,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Marius Borø , 2019\n" +"Last-Translator: Marius Borø , 2020\n" "Language-Team: Norwegian (https://www.transifex.com/grocy/teams/93189/no/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -322,10 +322,25 @@ msgid "Stable version" msgstr "Stabil versjon" msgid "Preview version" -msgstr "Under utvikling versjon" +msgstr "Versjon under utvikling" msgid "current release" msgstr "Nåværende versjon" msgid "not yet released" msgstr "enda ikke gitt ut" + +msgid "Portuguese (Brazil)" +msgstr "Portugisisk (Brasil)" + +msgid "This is a note" +msgstr "Dette er et notat" + +msgid "Freezer" +msgstr "Fryser" + +msgid "Hungarian" +msgstr "Ungarsk" + +msgid "Slovak" +msgstr "Slovakisk" diff --git a/localization/no/stock_transaction_types.po b/localization/no/stock_transaction_types.po index f97d7733..52faa392 100644 --- a/localization/no/stock_transaction_types.po +++ b/localization/no/stock_transaction_types.po @@ -1,5 +1,5 @@ # Translators: -# Marius Borø , 2019 +# Marius Borø , 2020 # msgid "" msgstr "" @@ -7,7 +7,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Marius Borø , 2019\n" +"Last-Translator: Marius Borø , 2020\n" "Language-Team: Norwegian (https://www.transifex.com/grocy/teams/93189/no/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,12 @@ msgstr "" msgid "purchase" msgstr "innkjøp" +msgid "transfer_from" +msgstr "overføre_fra" + +msgid "transfer_to" +msgstr "overføre_til" + msgid "consume" msgstr "forbruk" @@ -27,3 +33,12 @@ msgstr "beholdningsantall korreksjon" msgid "product-opened" msgstr "produkt åpnet" + +msgid "stock-edit-old" +msgstr "beholdning_endre_gammel" + +msgid "stock-edit-new" +msgstr "beholdning_endre_ny" + +msgid "self-production" +msgstr "egenproduksjon" diff --git a/localization/no/strings.po b/localization/no/strings.po index b7e194ef..0d8b2f0d 100644 --- a/localization/no/strings.po +++ b/localization/no/strings.po @@ -1,7 +1,7 @@ # Translators: # Bernd Bestel , 2019 # Andreas Henden , 2019 -# Marius Borø , 2019 +# Marius Borø , 2020 # msgid "" msgstr "" @@ -9,7 +9,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Marius Borø , 2019\n" +"Last-Translator: Marius Borø , 2020\n" "Language-Team: Norwegian (https://www.transifex.com/grocy/teams/93189/no/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -125,7 +125,7 @@ msgid "Stock quantity unit" msgstr "Forpakningstype i beholdningen" msgid "Stock amount" -msgstr "Standardmengde" +msgstr "Beholdningsantall" msgid "Last purchased" msgstr "Sist kjøpt" @@ -830,7 +830,7 @@ msgid "Delete not possible" msgstr "Ikke mulig å slette" msgid "Equipment" -msgstr "Instruksjonmanualer" +msgstr "Instruksjonsmanualer" msgid "Instruction manual" msgstr "Instruksjonsmanual" @@ -842,17 +842,16 @@ msgid "Notes" msgstr "Notater" msgid "Edit equipment" -msgstr "Endre instruksjonmanualer for utstyr" +msgstr "Endre instruksjonsmanual" msgid "Create equipment" -msgstr "Opprett instruksjonmanualer for utstyr" +msgstr "Opprett instruksjonmanualer for et utstyr" msgid "" "If you don't select a file, the current instruction manual will not be " "altered" msgstr "" -"Hvis du ikke velger en instruksjonsmanual, vil nåværende instruksjonsmanual " -"ikke bli endret" +"Om ingen ny instruksjonsmanual blir lastet opp vil nåværende bli værende" msgid "No instruction manual available" msgstr "Ingen instruksjonsmanual tilgjengelig" @@ -955,18 +954,18 @@ msgid "" "The first item in this list would be picked by the default rule which is " "\"First expiring first, then first in first out\"" msgstr "" -"Første produkt på listen vil bli konsumert først i henhold til regel: \"Går " -"ut på dato først. Deretter først inn, først ut\"." +"Første produkt på listen vil bli konsumert først i henhold til denne " +"regelen: \"Går ut på dato først, deretter først inn, først ut\"." msgid "Mark %1$s of %2$s as open" msgstr "Merk %1$s av %2$s som åpen" msgid "" -"When a product was marked as opened, the best before date will be replaced " -"by today + this amount of days (a value of 0 disables this)" +"When this product was marked as opened, the best before date will be " +"replaced by today + this amount of days (a value of 0 disables this)" msgstr "" -"Når et produkt blir merket som åpnet endres best før datoen fra i dag + " -"dette antallet av dager. (Et 0 vil deaktivere dette)" +"Når dette produktet merkes som åpnet vil best før datoen endres fra dagens " +"dato + antall dager under" msgid "Default best before days after opened" msgstr "Standard best før dager etter åpnet" @@ -977,9 +976,6 @@ msgstr "Merket %1$s av %2$s som åpnet" msgid "Mark as opened" msgstr "Merk som åpnet" -msgid "Expires on %1$s; Bought on %2$s" -msgstr "Går ut på dato %1$s, Kjøpt %2$s" - msgid "Not opened" msgstr "Ikke åpnet" @@ -1005,7 +1001,7 @@ msgid "Show clock in header" msgstr "Vis klokken på toppen av siden" msgid "Stock settings" -msgstr "Beholdningsinnstillinger" +msgstr "Beholdning - innstillinger" msgid "Shopping list to stock workflow" msgstr "Arbeidsflyt fra handleliste til beholding" @@ -1148,8 +1144,8 @@ msgstr "Produkttelling" msgid "Type a new product name or barcode and hit TAB to start a workflow" msgstr "" -"Skriv inn et nytt produkt eller strekkode, trykk så TAB for å starte " -"prosessen" +"Skriv inn et nytt produkt eller scan en strekkode, trykk så TAB for å starte" +" innkjøps/ forbruksprosess" msgid "" "This will be used as the default setting when adding this product as a " @@ -1189,7 +1185,7 @@ msgid "Average shelf life" msgstr "Gjennomsnittlig holdbarhetstid" msgid "Spoil rate" -msgstr "\"Utgått på dato\" rate" +msgstr "Prosenttall for hvor mye som har utgått på dato " msgid "Show more" msgstr "Vis mer" @@ -1295,6 +1291,9 @@ msgstr "Ikke nok i beholdningen" msgid "Expiring soon days" msgstr "Går ut på dato snart dager" +msgid "Default location" +msgstr "Standard lokasjon" + msgid "Default amount for purchase" msgstr "Standard mengde for innkjøp" @@ -1651,62 +1650,245 @@ msgid "Miss" msgstr "Bom" msgid "Display recipe" -msgstr "" +msgstr "Vis oppskrift" msgid "Accumulate sub products min. stock amount" -msgstr "" +msgstr "Akkumulert underprodukter minimum beholdningsnivå" msgid "" "If enabled, the min. stock amount of sub products will be accumulated into " "this product, means the sub product will never be \"missing\", only this " "product" msgstr "" +"Hvis aktivert vil minimum beholdningsnivå av under produkter bli akkumulert " +"inn i dette produktet. Dette betyr at under produktet aldri vil \"mangle\", " +"kunne dette produktet." msgid "Are you sure to remove this conversion?" -msgstr "" +msgstr "Er du sikker på at du ønsker å fjerne denne konverteringen?" msgid "Unit price" -msgstr "" +msgstr "Enhetspris" msgid "Total price" -msgstr "" +msgstr "Totalpris" msgid "in %s and based on the purchase quantity unit" -msgstr "" +msgstr "I %s og basert på innkjøpsforpakningen" msgid "Unlimited" -msgstr "" +msgstr "Evig" msgid "Clear" -msgstr "" +msgstr "Tøm" msgid "Are you sure to remove the included recipe \"%s\"?" -msgstr "" +msgstr "Er du sikker du ønsker å slette den inkluderte oppskriften \"%s\"?" msgid "Period interval" -msgstr "" +msgstr "Periodiskinterval" msgid "" "This means the next execution of this chore should only be scheduled every " "%s days" msgstr "" +"Dette betyr at neste gjennomføring av denne husarbeidsoppgaven skal kun " +"planlegges for hver %s dager" msgid "" "This means the next execution of this chore should only be scheduled every " "%s weeks" msgstr "" +"Dette betyr at neste gjennomføring av denne husarbeidsoppgaven skal kun " +"planlegges for hver %s uker" msgid "" "This means the next execution of this chore should only be scheduled every " "%s months" msgstr "" +"Dette betyr at neste gjennomføring av denne husarbeidsoppgaven skal kun " +"planlegges for hver %s måneder" msgid "" "This means the next execution of this chore is scheduled 1 year after the " "last execution" msgstr "" +"Dette betyr at neste gjennomføring av denne husarbeidsoppgaven skal være 1 " +"år etter forrige gjennomføring" msgid "" "This means the next execution of this chore should only be scheduled every " "%s years" msgstr "" +"Dette betyr at neste gjennomføring av denne husarbeidsoppgaven skal kun " +"planlegges for hver %s år" + +msgid "Transfer" +msgstr "Flytte produkt" + +msgid "From location" +msgstr "Fra lokasjon" + +msgid "To location" +msgstr "Til lokasjon" + +msgid "There are no units available at this location" +msgstr "Det er ingen enheter tilgjengelig på denne lokasjonen" + +msgid "Amount: %1$s; Expires on %2$s; Bought on %3$s" +msgstr "Mengde: %1$s; Best før %2$s; Kjøpt %3$s" + +msgid "Transfered %1$s of %2$s from %3$s to %4$s" +msgstr "Flyttet %1$s %2$s fra %3$s til %4$s" + +msgid "Show stock entries" +msgstr "Vis beholdningsoppføringer" + +msgid "Stock entries" +msgstr "Beholdningsoppføringer" + +msgid "Best before date" +msgstr "Best før dato" + +msgid "Purchased date" +msgstr "Innkjøpsdato" + +msgid "Consume all %s for this stock entry" +msgstr "Forbruk alle %s for denne beholdningsoppføringen" + +msgid "The amount cannot be lower than %1$s" +msgstr "Mengden kan ikke være lavere enn %1$s" + +msgid "Stock entry successfully updated" +msgstr "Beholdningsoppføring oppdatert" + +msgid "Edit stock entry" +msgstr "Endre beholdningsoppføring" + +msgid "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" +msgstr "" +"Tilgang til kamera må støttes av din nettleser og grocy må serves via en " +"sikker tilkobling (https://)" + +msgid "Keep screen on" +msgstr "Skjerm alltid på" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "Hold skjerm på når du bruker fullskjermsoversikt" + +msgid "A purchased date is required" +msgstr "En innkjøpsdato kreves" + +msgid "" +"When a product is selected, one unit (per serving in purchase quantity unit)" +" will be added to stock on consuming this recipe" +msgstr "" +"Når du konsumere denne oppskriften vil den produsere en enhet av produktet " +"du har valgt under. (Per forbruk enhet)" + +msgid "Produces product" +msgstr "Lager produkt" + +msgid "This booking cannot be undone" +msgstr "Denne registreringen kan ikke angres" + +msgid "Booking does not exist or was already undone" +msgstr "Registeringen eksistere ikke eller har allerede blitt angret" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "Er du sikker du ønsker slette API key \"%s\"?" + +msgid "Add note" +msgstr "Legg til notat" + +msgid "Add note to %s" +msgstr "Legg notat til %s" + +msgid "per day" +msgstr "per dag" + +msgid "Compact view" +msgstr "Kompakt visning" + +msgid "Normal view" +msgstr "Vanlig visning" + +msgid "Only undone items" +msgstr "Kun angrede enheter" + +msgid "Add product" +msgstr "Legg til produkt" + +msgid "Add product to %s" +msgstr "Legg produkt til %s" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" +"Forbruk alle ingredienser nødvendig for denne ukens oppskrifter eller " +"produkter" + +msgid "Meal plan recipe" +msgstr "Middagsplan-oppskrift" + +msgid "Meal plan note" +msgstr "Middagsplan-notat" + +msgid "Meal plan product" +msgstr "Middagsplan-produkt" + +msgid "Scan mode" +msgstr "Scanne modus" + +msgid "on" +msgstr "på" + +msgid "off" +msgstr "av" + +msgid "" +"Scan mode is on but not all required fields could be populated automatically" +msgstr "Scannemodus er på, men ikke alle felt kan fylles ut automatisk" + +msgid "Is freezer" +msgstr "Er fryser" + +msgid "" +"When moving products from/to a freezer location, the products best before " +"date is automatically adjusted according to the product settings" +msgstr "" +"Når produkter blir flyttet til/fra en fryskerlokasjon, endres best før " +"datoen automatisk i forhold til produktinnstillingen" + +msgid "" +"On moving this product to a freezer location (so when freezing it), the best" +" before date will be replaced by today + this amount of days" +msgstr "" +"Når dette produktet blir flyttet til en fryskerlokasjon (produkt skal " +"fryses), endres best før datoen fra i dag + antall dager under" + +msgid "Default best before days after freezing" +msgstr "Standard best før dager etter frysing" + +msgid "" +"On moving this product from a freezer location (so when thawing it), the " +"best before date will be replaced by today + this amount of days" +msgstr "" +"Når dette produktet blir flyttet fra en fryskerlokasjon (produkt skal " +"tines), endres best før datoen fra i dag + antall dager under" + +msgid "Default best before days after thawing" +msgstr "Standard best før dager etter tining" + +msgid "This cannot be the same as the \"From\" location" +msgstr "Dette kan ikke være det som \"Fra\" lokasjonen" + +msgid "Thawed" +msgstr "Tint" + +msgid "Frozen" +msgstr "Fryst" + +msgid "Are you sure to delete userentity \"%s\"?" +msgstr "Er du sikker på at du ønsker slette userentity \"%s\"?" diff --git a/localization/pl/userfield_types.po b/localization/pl/userfield_types.po index 5b978a44..c566d361 100644 --- a/localization/pl/userfield_types.po +++ b/localization/pl/userfield_types.po @@ -40,3 +40,9 @@ msgstr "Pole wyboru" msgid "preset-list" msgstr "Lista opcji" + +msgid "preset-checklist" +msgstr "" + +msgid "link" +msgstr "" diff --git a/localization/pt_BR/demo_data.po b/localization/pt_BR/demo_data.po index e727c5cd..8231b14b 100644 --- a/localization/pt_BR/demo_data.po +++ b/localization/pt_BR/demo_data.po @@ -51,8 +51,8 @@ msgstr[1] "Vidros" msgid "Tin" msgid_plural "Tins" -msgstr[0] "Lata" -msgstr[1] "Latas" +msgstr[0] "Enlatado" +msgstr[1] "Enlatados" msgid "Can" msgid_plural "Cans" @@ -284,7 +284,7 @@ msgid "Milk Chocolate" msgstr "Chocolate Branco" msgid "Dark Chocolate" -msgstr "Chocolate" +msgstr "Chocolate Amargo" msgid "Slice" msgid_plural "Slices" @@ -329,3 +329,18 @@ msgstr "versão atual" msgid "not yet released" msgstr "ainda não lançado" + +msgid "Portuguese (Brazil)" +msgstr "Português (Brasil)" + +msgid "This is a note" +msgstr "" + +msgid "Freezer" +msgstr "" + +msgid "Hungarian" +msgstr "" + +msgid "Slovak" +msgstr "" diff --git a/localization/pt_BR/stock_transaction_types.po b/localization/pt_BR/stock_transaction_types.po index 53ce32cc..2da5f2e4 100644 --- a/localization/pt_BR/stock_transaction_types.po +++ b/localization/pt_BR/stock_transaction_types.po @@ -1,5 +1,6 @@ # Translators: # Danilo Vieira , 2019 +# Arthur Vieira , 2020 # msgid "" msgstr "" @@ -7,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Danilo Vieira , 2019\n" +"Last-Translator: Arthur Vieira , 2020\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/grocy/teams/93189/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +20,12 @@ msgstr "" msgid "purchase" msgstr "comprar" +msgid "transfer_from" +msgstr "transferir de" + +msgid "transfer_to" +msgstr "transferir para" + msgid "consume" msgstr "consumir" @@ -27,3 +34,12 @@ msgstr "correção de inventário" msgid "product-opened" msgstr "produto-aberto" + +msgid "stock-edit-old" +msgstr "editar estoque antigo" + +msgid "stock-edit-new" +msgstr "editar estoque novo" + +msgid "self-production" +msgstr "" diff --git a/localization/pt_BR/strings.po b/localization/pt_BR/strings.po index e8c3e46a..a6b5afcf 100644 --- a/localization/pt_BR/strings.po +++ b/localization/pt_BR/strings.po @@ -3,6 +3,7 @@ # Armando Neto , 2019 # Danilo Vieira , 2019 # Jefferson Brito Passos dos Santos , 2019 +# Arthur Vieira , 2020 # msgid "" msgstr "" @@ -10,7 +11,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Jefferson Brito Passos dos Santos , 2019\n" +"Last-Translator: Arthur Vieira , 2020\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/grocy/teams/93189/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -972,11 +973,9 @@ msgid "Mark %1$s of %2$s as open" msgstr "Marcar %1$s de %2$s como aberto" msgid "" -"When a product was marked as opened, the best before date will be replaced " -"by today + this amount of days (a value of 0 disables this)" +"When this product was marked as opened, the best before date will be " +"replaced by today + this amount of days (a value of 0 disables this)" msgstr "" -"Quando um produto for marcado como aberto, a validade será substituída por " -"hoje + esta quantidade de dias (o valor 0 desabilita)" msgid "Default best before days after opened" msgstr "Validade padão após aberto" @@ -987,9 +986,6 @@ msgstr "%1$s de %2$s marcado como aberto" msgid "Mark as opened" msgstr "Marcar como aberto" -msgid "Expires on %1$s; Bought on %2$s" -msgstr "Vence em %1$s; Comprado em %2$s" - msgid "Not opened" msgstr "Não aberto" @@ -1739,3 +1735,161 @@ msgid "" msgstr "" "Isto significa que a próxima execução desta tarefa doméstica deverá somente " "ser agendada a cada %sanos" + +msgid "Transfer" +msgstr "Transferir" + +msgid "From location" +msgstr "De" + +msgid "To location" +msgstr "Para" + +msgid "There are no units available at this location" +msgstr "Não há nenhuma unidade disponivel neste local" + +msgid "Amount: %1$s; Expires on %2$s; Bought on %3$s" +msgstr "Quantidade: 1%1s; Vence em 2%2s; Comprado em 3%3s" + +msgid "Transfered %1$s of %2$s from %3$s to %4$s" +msgstr "Transferido%1$s de %2$s de %3$s para %4$s" + +msgid "Show stock entries" +msgstr "Mostrar os itens no estoque" + +msgid "Stock entries" +msgstr "Itens no estoque" + +msgid "Best before date" +msgstr "Consumir antes de" + +msgid "Purchased date" +msgstr "Data de compra" + +msgid "Consume all %s for this stock entry" +msgstr "Consumir todos os %s para esse item no estoque" + +msgid "The amount cannot be lower than %1$s" +msgstr "A quantidade não pode ser menor que %1$s" + +msgid "Stock entry successfully updated" +msgstr "Estoque atualizado com sucesso" + +msgid "Edit stock entry" +msgstr "Editar item no estoque" + +msgid "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" +msgstr "" +"Acesso a Camera só é possivel caso seja suportado e permitido pelo navegador" +" e quando Grocy for acessado por conexão segura (https://)" + +msgid "Keep screen on" +msgstr "Mantenha a tela ligada" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "" +"Mantenha a tela ligada quando estiver mostrando um \"Cartão de tela-cheia\"" + +msgid "A purchased date is required" +msgstr "" + +msgid "" +"When a product is selected, one unit (per serving in purchase quantity unit)" +" will be added to stock on consuming this recipe" +msgstr "" + +msgid "Produces product" +msgstr "" + +msgid "This booking cannot be undone" +msgstr "" + +msgid "Booking does not exist or was already undone" +msgstr "" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "" + +msgid "Add note" +msgstr "" + +msgid "Add note to %s" +msgstr "" + +msgid "per day" +msgstr "" + +msgid "Compact view" +msgstr "" + +msgid "Normal view" +msgstr "" + +msgid "Only undone items" +msgstr "" + +msgid "Add product" +msgstr "" + +msgid "Add product to %s" +msgstr "" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" + +msgid "Meal plan recipe" +msgstr "" + +msgid "Meal plan note" +msgstr "" + +msgid "Meal plan product" +msgstr "" + +msgid "Scan mode" +msgstr "" + +msgid "on" +msgstr "" + +msgid "off" +msgstr "" + +msgid "" +"Scan mode is on but not all required fields could be populated automatically" +msgstr "" + +msgid "Is freezer" +msgstr "" + +msgid "" +"When moving products from/to a freezer location, the products best before " +"date is automatically adjusted according to the product settings" +msgstr "" + +msgid "" +"On moving this product to a freezer location (so when freezing it), the best" +" before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after freezing" +msgstr "" + +msgid "" +"On moving this product from a freezer location (so when thawing it), the " +"best before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after thawing" +msgstr "" + +msgid "This cannot be the same as the \"From\" location" +msgstr "" + +msgid "Thawed" +msgstr "" + +msgid "Frozen" +msgstr "" diff --git a/localization/ru/demo_data.po b/localization/ru/demo_data.po index 8c775560..364cf2f9 100644 --- a/localization/ru/demo_data.po +++ b/localization/ru/demo_data.po @@ -345,3 +345,18 @@ msgstr "текущий релиз" msgid "not yet released" msgstr "Пока не выпущено" + +msgid "Portuguese (Brazil)" +msgstr "" + +msgid "This is a note" +msgstr "" + +msgid "Freezer" +msgstr "" + +msgid "Hungarian" +msgstr "" + +msgid "Slovak" +msgstr "" diff --git a/localization/ru/strings.po b/localization/ru/strings.po index c7c39727..229bc652 100644 --- a/localization/ru/strings.po +++ b/localization/ru/strings.po @@ -1000,11 +1000,9 @@ msgid "Mark %1$s of %2$s as open" msgstr "Открыть %1$s %2$s " msgid "" -"When a product was marked as opened, the best before date will be replaced " -"by today + this amount of days (a value of 0 disables this)" +"When this product was marked as opened, the best before date will be " +"replaced by today + this amount of days (a value of 0 disables this)" msgstr "" -"Когда продукт помечается как открытый, срок годности заменится по формуле: " -"сегодня + это количество дней (значение 0 отключает этот функционал)" msgid "Default best before days after opened" msgstr "Срок годности в днях по умолчанию после открытия" @@ -1015,9 +1013,6 @@ msgstr "%2$s %1$s помечено открытым" msgid "Mark as opened" msgstr "Пометить как открытые" -msgid "Expires on %1$s; Bought on %2$s" -msgstr "Срок годности: %1$s; Куплено: %2$s" - msgid "Not opened" msgstr "Не открыто" @@ -1334,6 +1329,9 @@ msgstr "Не достаточно в запасе" msgid "Expiring soon days" msgstr "Дней до окончания срока годности" +msgid "Default location" +msgstr "" + msgid "Default amount for purchase" msgstr "Количество покупки по умолчанию" @@ -1754,3 +1752,161 @@ msgid "" "This means the next execution of this chore should only be scheduled every " "%s years" msgstr "" + +msgid "Transfer" +msgstr "" + +msgid "From location" +msgstr "" + +msgid "To location" +msgstr "" + +msgid "There are no units available at this location" +msgstr "" + +msgid "Amount: %1$s; Expires on %2$s; Bought on %3$s" +msgstr "" + +msgid "Transfered %1$s of %2$s from %3$s to %4$s" +msgstr "" + +msgid "Show stock entries" +msgstr "" + +msgid "Stock entries" +msgstr "" + +msgid "Best before date" +msgstr "" + +msgid "Purchased date" +msgstr "" + +msgid "Consume all %s for this stock entry" +msgstr "" + +msgid "The amount cannot be lower than %1$s" +msgstr "" + +msgid "Stock entry successfully updated" +msgstr "" + +msgid "Edit stock entry" +msgstr "" + +msgid "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" +msgstr "" + +msgid "Keep screen on" +msgstr "" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "" + +msgid "A purchased date is required" +msgstr "" + +msgid "" +"When a product is selected, one unit (per serving in purchase quantity unit)" +" will be added to stock on consuming this recipe" +msgstr "" + +msgid "Produces product" +msgstr "" + +msgid "This booking cannot be undone" +msgstr "" + +msgid "Booking does not exist or was already undone" +msgstr "" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "" + +msgid "Add note" +msgstr "" + +msgid "Add note to %s" +msgstr "" + +msgid "per day" +msgstr "" + +msgid "Compact view" +msgstr "" + +msgid "Normal view" +msgstr "" + +msgid "Only undone items" +msgstr "" + +msgid "Add product" +msgstr "" + +msgid "Add product to %s" +msgstr "" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" + +msgid "Meal plan recipe" +msgstr "" + +msgid "Meal plan note" +msgstr "" + +msgid "Meal plan product" +msgstr "" + +msgid "Scan mode" +msgstr "" + +msgid "on" +msgstr "" + +msgid "off" +msgstr "" + +msgid "" +"Scan mode is on but not all required fields could be populated automatically" +msgstr "" + +msgid "Is freezer" +msgstr "" + +msgid "" +"When moving products from/to a freezer location, the products best before " +"date is automatically adjusted according to the product settings" +msgstr "" + +msgid "" +"On moving this product to a freezer location (so when freezing it), the best" +" before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after freezing" +msgstr "" + +msgid "" +"On moving this product from a freezer location (so when thawing it), the " +"best before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after thawing" +msgstr "" + +msgid "This cannot be the same as the \"From\" location" +msgstr "" + +msgid "Thawed" +msgstr "" + +msgid "Frozen" +msgstr "" + +msgid "Are you sure to delete userentity \"%s\"?" +msgstr "" diff --git a/localization/sk_SK/chore_assignment_types.po b/localization/sk_SK/chore_assignment_types.po new file mode 100644 index 00000000..adf05d1e --- /dev/null +++ b/localization/sk_SK/chore_assignment_types.po @@ -0,0 +1,30 @@ +# Translators: +# peter cerny , 2020 +# Jose Riha , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-09-17 10:45+0000\n" +"Last-Translator: Jose Riha , 2020\n" +"Language-Team: Slovak (Slovakia) (https://www.transifex.com/grocy/teams/93189/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +"X-Domain: grocy/chore_assignment_types\n" + +msgid "no-assignment" +msgstr "bez priradenia" + +msgid "who-least-did-first" +msgstr "prednosť má najmenej vyťažovaná osoba" + +msgid "random" +msgstr "náhodne" + +msgid "in-alphabetical-order" +msgstr "abecedne" diff --git a/localization/sk_SK/chore_period_types.po b/localization/sk_SK/chore_period_types.po new file mode 100644 index 00000000..24466e02 --- /dev/null +++ b/localization/sk_SK/chore_period_types.po @@ -0,0 +1,37 @@ +# Translators: +# Marko Zbirka , 2019 +# peter cerny , 2020 +# Jose Riha , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Jose Riha , 2020\n" +"Language-Team: Slovak (Slovakia) (https://www.transifex.com/grocy/teams/93189/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +"X-Domain: grocy/chore_types\n" + +msgid "manually" +msgstr "ručne" + +msgid "dynamic-regular" +msgstr "dynamicky-pravidelne" + +msgid "daily" +msgstr "denne" + +msgid "weekly" +msgstr "týždenne" + +msgid "monthly" +msgstr "mesačne" + +msgid "yearly" +msgstr "ročne" diff --git a/localization/sk_SK/component_translations.po b/localization/sk_SK/component_translations.po new file mode 100644 index 00000000..093389c7 --- /dev/null +++ b/localization/sk_SK/component_translations.po @@ -0,0 +1,49 @@ +# Translators: +# Jose Riha , 2020 +# Bernd Bestel , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Bernd Bestel , 2020\n" +"Language-Team: Slovak (Slovakia) (https://www.transifex.com/grocy/teams/93189/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +"X-Domain: grocy/component_translations\n" + +msgid "timeago_locale" +msgstr "sk" + +msgid "timeago_nan" +msgstr "pred NaN rokmi" + +msgid "moment_locale" +msgstr "sk" + +msgid "datatables_localization" +msgstr "" +"{\"sEmptyTable\":\"Nie sú k dispozícii žiadne dáta\",\"sInfo\":\"Záznamy " +"_START_ až _END_ z celkom _TOTAL_\",\"sInfoEmpty\":\"Záznamy 0 až 0 z celkom" +" 0 \",\"sInfoFiltered\":\"(vyfiltrované spomedzi _MAX_ " +"záznamov)\",\"sInfoPostFix\":\"\",\"sInfoThousands\":\",\",\"sLengthMenu\":\"Zobraz" +" _MENU_ " +"záznamov\",\"sLoadingRecords\":\"Načítavam...\",\"sProcessing\":\"Spracúvam...\",\"sSearch\":\"Hľadať:\",\"sZeroRecords\":\"Nenašli" +" sa žiadne vyhovujúce " +"záznamy\",\"oPaginate\":{\"sFirst\":\"Prvá\",\"sLast\":\"Posledná\",\"sNext\":\"Nasledujúca\",\"sPrevious\":\"Predchádzajúca\"},\"oAria\":{\"sSortAscending\":\":" +" aktivujte na zoradenie stĺpca vzostupne\",\"sSortDescending\":\": aktivujte" +" na zoradenie stĺpca zostupne\"}}" + +msgid "summernote_locale" +msgstr "sk-SK" + +msgid "fullcalendar_locale" +msgstr "sk" + +msgid "bootstrap-select_locale" +msgstr "sk_SK" diff --git a/localization/sk_SK/demo_data.po b/localization/sk_SK/demo_data.po new file mode 100644 index 00000000..754fd34a --- /dev/null +++ b/localization/sk_SK/demo_data.po @@ -0,0 +1,361 @@ +# Translators: +# Jose Riha , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Jose Riha , 2020\n" +"Language-Team: Slovak (Slovakia) (https://www.transifex.com/grocy/teams/93189/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +"X-Domain: grocy/demo_data\n" + +msgid "Cookies" +msgstr "Sušienky" + +msgid "Chocolate" +msgstr "Čokoláda" + +msgid "Pantry" +msgstr "Komora" + +msgid "Candy cupboard" +msgstr "Skrinka so sladkosťami" + +msgid "Tinned food cupboard" +msgstr "Skrinka s konzervami" + +msgid "Fridge" +msgstr "Chladnička" + +msgid "Piece" +msgid_plural "Pieces" +msgstr[0] "Kus" +msgstr[1] "Kusy" +msgstr[2] "Kusov" +msgstr[3] "Kusov" + +msgid "Pack" +msgid_plural "Packs" +msgstr[0] "Balenie" +msgstr[1] "Balenia" +msgstr[2] "Balení" +msgstr[3] "Balení" + +msgid "Glass" +msgid_plural "Glasses" +msgstr[0] "Pohár" +msgstr[1] "Poháre" +msgstr[2] "Pohárov" +msgstr[3] "Pohárov" + +msgid "Tin" +msgid_plural "Tins" +msgstr[0] "Plechovka" +msgstr[1] "Plechovky" +msgstr[2] "Plechoviek" +msgstr[3] "Plechoviek" + +msgid "Can" +msgid_plural "Cans" +msgstr[0] "Konzerva" +msgstr[1] "Konzervy" +msgstr[2] "Konzerv" +msgstr[3] "Konzerv" + +msgid "Bunch" +msgid_plural "Bunches" +msgstr[0] "Strapec" +msgstr[1] "Strapce" +msgstr[2] "Strapcov" +msgstr[3] "Strapcov" + +msgid "Gummy bears" +msgstr "Gumoví medvedíci" + +msgid "Crisps" +msgstr "Čipsy" + +msgid "Eggs" +msgstr "Vajcia" + +msgid "Noodles" +msgstr "Rezance" + +msgid "Pickles" +msgstr "Čalamáda" + +msgid "Gulash soup" +msgstr "Guláš" + +msgid "Yogurt" +msgstr "Jogurt" + +msgid "Cheese" +msgstr "Syr" + +msgid "Cold cuts" +msgstr "Nárezy" + +msgid "Paprika" +msgstr "Paprika" + +msgid "Cucumber" +msgstr "Uhorka" + +msgid "Radish" +msgstr "Reďkovka" + +msgid "Tomato" +msgstr "Paradajka" + +msgid "Changed towels in the bathroom" +msgstr "Vymenené uteráky v kúpeľni" + +msgid "Cleaned the kitchen floor" +msgstr "Umytá dlážka v kuchyni" + +msgid "Warranty ends" +msgstr "Záruka končí" + +msgid "TV remote control" +msgstr "Diaľkové ovládanie TV" + +msgid "Alarm clock" +msgstr "Budík" + +msgid "Heat remote control" +msgstr "Diaľkové ovládanie klimatizácie" + +msgid "Lawn mowed in the garden" +msgstr "Pokosený trávnik v záhrade" + +msgid "Some good snacks" +msgstr "Nejaká dobrá mňamka" + +msgid "Pizza dough" +msgstr "Cesto na pizzu" + +msgid "Sieved tomatoes" +msgstr "Pretlak" + +msgid "Salami" +msgstr "Saláma" + +msgid "Toast" +msgstr "Hrianka" + +msgid "Minced meat" +msgstr "Mleté mäso" + +msgid "Pizza" +msgstr "Pizza" + +msgid "Spaghetti bolognese" +msgstr "Boloňské špagety" + +msgid "Sandwiches" +msgstr "Sendviče" + +msgid "English" +msgstr "Angličtina" + +msgid "German" +msgstr "Nemčina" + +msgid "Italian" +msgstr "Taliančina" + +msgid "This is the note content of the recipe ingredient" +msgstr "Toto je obsah poznámky pre ingredienciu" + +msgid "Demo User" +msgstr "Používateľ dema" + +msgid "Gram" +msgid_plural "Grams" +msgstr[0] "Gram" +msgstr[1] "Gramy" +msgstr[2] "Gramov" +msgstr[3] "Gramov" + +msgid "Flour" +msgstr "Múka" + +msgid "Pancakes" +msgstr "Palacinky" + +msgid "Sugar" +msgstr "Cukor" + +msgid "Home" +msgstr "Domov" + +msgid "Life" +msgstr "Život" + +msgid "Projects" +msgstr "Projekty" + +msgid "Repair the garage door" +msgstr "Opraviť garážové dvere" + +msgid "Fork and improve grocy" +msgstr "Forknúť a vylepšiť grocy" + +msgid "Find a solution for what to do when I forget the door keys" +msgstr "Nájsť riešenie čo robiť, keď zabudnem kľúče od domu" + +msgid "Sweets" +msgstr "Sladkosti" + +msgid "Bakery products" +msgstr "Pekárenské výrobky" + +msgid "Tinned food" +msgstr "Jedlo v konzerve" + +msgid "Butchery products" +msgstr "Mäsové výrobky" + +msgid "Vegetables/Fruits" +msgstr "Zelenina/Ovocie" + +msgid "Refrigerated products" +msgstr "Chladené výrobky" + +msgid "Coffee machine" +msgstr "Kávovar" + +msgid "Dishwasher" +msgstr "Umývačka riadu" + +msgid "Liter" +msgstr "Liter" + +msgid "Liters" +msgstr "Litre" + +msgid "Bottle" +msgstr "Fľaša" + +msgid "Bottles" +msgstr "Fľaše" + +msgid "Milk" +msgstr "Mlieko" + +msgid "Chocolate sauce" +msgstr "Čokoládová poleva" + +msgid "Milliliters" +msgstr "Mililitre" + +msgid "Milliliter" +msgstr "Mililiter" + +msgid "Bottom" +msgstr "Základ" + +msgid "Topping" +msgstr "Poleva" + +msgid "French" +msgstr "Francúzština" + +msgid "Turkish" +msgstr "Turečtina" + +msgid "Spanish" +msgstr "Španielčina" + +msgid "Russian" +msgstr "Ruština" + +msgid "The thing which happens on the 5th of every month" +msgstr "Vec, ktorá sa deje 5. v každom mesiaci" + +msgid "The thing which happens daily" +msgstr "Vec, ktorá sa deje každý deň" + +msgid "The thing which happens on Mondays and Wednesdays" +msgstr "Vec, ktorá sa deje pondelky a stredy" + +msgid "Swedish" +msgstr "Švédčina" + +msgid "Polish" +msgstr "Poľština" + +msgid "Milk Chocolate" +msgstr "Mliečna čokoláda" + +msgid "Dark Chocolate" +msgstr "Horká čokoláda" + +msgid "Slice" +msgid_plural "Slices" +msgstr[0] "Krajec" +msgstr[1] "Krajce" +msgstr[2] "Krajcov" +msgstr[3] "Krajcov" + +msgid "Example userentity" +msgstr "Príklad používateľskej entity" + +msgid "This is an example user entity..." +msgstr "Toto je prázdna používateľská entita..." + +msgid "Custom field" +msgstr "Vlastné pole" + +msgid "Example field value..." +msgstr "Príklad hodnoty poľa..." + +msgid "Waffle rolls" +msgstr "Lievance" + +msgid "Danish" +msgstr "Dánčina" + +msgid "Dutch" +msgstr "Holandčina" + +msgid "Norwegian" +msgstr "Nórčina" + +msgid "Demo" +msgstr "Demo" + +msgid "Stable version" +msgstr "Stabilná verzia" + +msgid "Preview version" +msgstr "Vývojová verzia" + +msgid "current release" +msgstr "aktuálne vydanie" + +msgid "not yet released" +msgstr "zatiaľ nevydané" + +msgid "Portuguese (Brazil)" +msgstr "Portugalčina (brazílska)" + +msgid "This is a note" +msgstr "Toto je poznámka" + +msgid "Freezer" +msgstr "Mraznička" + +msgid "Hungarian" +msgstr "Maďarčina" + +msgid "Slovak" +msgstr "Slovenčina" diff --git a/localization/sk_SK/stock_transaction_types.po b/localization/sk_SK/stock_transaction_types.po new file mode 100644 index 00000000..af823bab --- /dev/null +++ b/localization/sk_SK/stock_transaction_types.po @@ -0,0 +1,44 @@ +# Translators: +# Jose Riha , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Jose Riha , 2020\n" +"Language-Team: Slovak (Slovakia) (https://www.transifex.com/grocy/teams/93189/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +"X-Domain: grocy/stock_transaction_types\n" + +msgid "purchase" +msgstr "kúpiť" + +msgid "transfer_from" +msgstr "prevod_z" + +msgid "transfer_to" +msgstr "prevod_na" + +msgid "consume" +msgstr "spotrebovať" + +msgid "inventory-correction" +msgstr "inventár-oprava" + +msgid "product-opened" +msgstr "výrobok-otvorený" + +msgid "stock-edit-old" +msgstr "zásoby-úpravy-starý" + +msgid "stock-edit-new" +msgstr "zásoby-úpravy-nový" + +msgid "self-production" +msgstr "samoprodukcia" diff --git a/localization/sk_SK/strings.po b/localization/sk_SK/strings.po new file mode 100644 index 00000000..42003b1f --- /dev/null +++ b/localization/sk_SK/strings.po @@ -0,0 +1,1918 @@ +# Translators: +# Juraj Smieško , 2020 +# Jose Riha , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-05-01 17:42+0000\n" +"Last-Translator: Jose Riha , 2020\n" +"Language-Team: Slovak (Slovakia) (https://www.transifex.com/grocy/teams/93189/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +"X-Domain: grocy/strings\n" + +msgid "Stock overview" +msgstr "Prehľad zásob" + +msgid "%s product expires" +msgid_plural "%s products expiring" +msgstr[0] "%s výrobok expiruje" +msgstr[1] "%s výrobky expirujú" +msgstr[2] "%s výrobkov expiruje" +msgstr[3] "%s výrobkov expiruje" + +msgid "within the next day" +msgid_plural "within the next %s days" +msgstr[0] "počas nasledujúceho dňa" +msgstr[1] "počas nasledujúcich %d dní" +msgstr[2] "počas nasledujúcich %s dní" +msgstr[3] "počas nasledujúcich %s dní" + +msgid "%s product is already expired" +msgid_plural "%s products are already expired" +msgstr[0] "%s výrobok je po záruke" +msgstr[1] "%s výrobky sú po záruke" +msgstr[2] "%s výrobkov je po záruke" +msgstr[3] "%s výrobkov je po záruke" + +msgid "%s product is below defined min. stock amount" +msgid_plural "%s products are below defined min. stock amount" +msgstr[0] "%s výrobok má stav pod definovanou minimálnou zásobou" +msgstr[1] "%s výrobky majú stav pod definovanou minimálnou zásobou" +msgstr[2] "%s výrobkov má stav pod definovanou minimálnou zásobou" +msgstr[3] "%s výrobkov má stav pod definovanou minimálnou zásobou" + +msgid "Product" +msgstr "Výrobok" + +msgid "%s Product" +msgid_plural "%s Products" +msgstr[0] "%s výrobok" +msgstr[1] "%s výrobky" +msgstr[2] "%s výrobkov" +msgstr[3] "%s výrobkov" + +msgid "Amount" +msgstr "Množstvo" + +msgid "Next best before date" +msgstr "Nasledujúci dátum minimálnej trvanlivosti" + +msgid "Logout" +msgstr "Odhlásiť" + +msgid "Chores overview" +msgstr "Prehľad povinností" + +msgid "Batteries overview" +msgstr "Prehľad batérií" + +msgid "Purchase" +msgstr "Nakúpiť" + +msgid "Consume" +msgstr "Spotrebovať" + +msgid "Inventory" +msgstr "Zásoba" + +msgid "Shopping list" +msgstr "Nákupný zoznam" + +msgid "Chore tracking" +msgstr "Záznam povinností" + +msgid "Battery tracking" +msgstr "Záznam stavu batérií" + +msgid "Locations" +msgstr "Umiestnenia" + +msgid "Quantity units" +msgstr "Merné jednotky" + +msgid "Chores" +msgstr "Povinnosti" + +msgid "Batteries" +msgstr "Batérie" + +msgid "Chore" +msgstr "Povinnosť" + +msgid "Next estimated tracking" +msgstr "Predpokladaný čas vykonania" + +msgid "Last tracked" +msgstr "Naposledy vykonané" + +msgid "Battery" +msgstr "Batéria" + +msgid "Last charged" +msgstr "Naposledy nabité" + +msgid "Next planned charge cycle" +msgstr "Ďalšia plánované nabíjanie" + +msgid "Best before" +msgstr "Spotrebovať do" + +msgid "OK" +msgstr "OK" + +msgid "Product overview" +msgstr "Prehľad výrobkov" + +msgid "Stock quantity unit" +msgstr "Jednotka množstva zásoby" + +msgid "Stock amount" +msgstr "Množstvo zásoby" + +msgid "Last purchased" +msgstr "Naposledy nakúpené" + +msgid "Last used" +msgstr "Naposledy použité" + +msgid "Spoiled" +msgstr "Pokazené" + +msgid "Barcode lookup is disabled" +msgstr "Vyhľadávanie podľa čiarového kódu je vypnuté" + +msgid "" +"will be added to the list of barcodes for the selected product on submit" +msgstr "pri odoslaní bude pridané do zoznamu čiarových kódov pre daný produkt" + +msgid "New amount" +msgstr "Nové množstvo" + +msgid "Note" +msgstr "Poznámka" + +msgid "Tracked time" +msgstr "Zaznamenaný čas" + +msgid "Chore overview" +msgstr "Prehľad povinností" + +msgid "Tracked count" +msgstr "Zaznamenaný počet" + +msgid "Battery overview" +msgstr "Prehľad batérií" + +msgid "Charge cycles count" +msgstr "Počet nabíjacích cyklov" + +msgid "Create shopping list item" +msgstr "Vytvoriť položku v nákupnom zozname" + +msgid "Edit shopping list item" +msgstr "Upraviť položku v nákupnom zozname" + +msgid "Save" +msgstr "Uložiť" + +msgid "Add" +msgstr "Pridať" + +msgid "Name" +msgstr "Meno" + +msgid "Location" +msgstr "Umiestnenie" + +msgid "Min. stock amount" +msgstr "Min. množstvo zásoby" + +msgid "QU purchase" +msgstr "Jednotka nákupu" + +msgid "QU stock" +msgstr "Jednotka zásoby" + +msgid "QU factor" +msgstr "Faktor jednotky nákup/zásoba" + +msgid "Description" +msgstr "Popis" + +msgid "Create product" +msgstr "Vytvoriť výrobok" + +msgid "Barcode(s)" +msgstr "Čiarový kód(y)" + +msgid "Minimum stock amount" +msgstr "Minimálna zásoba" + +msgid "Default best before days" +msgstr "Predvolený dátum spotreby" + +msgid "Quantity unit purchase" +msgstr "Merná jednotka nákupu" + +msgid "Quantity unit stock" +msgstr "Merná jednotka zásoby" + +msgid "Factor purchase to stock quantity unit" +msgstr "Faktor množstva jednotiek zásoby pri nákupe jedného kusu výrobku" + +msgid "Create location" +msgstr "Vytvoriť umiestnenie" + +msgid "Create quantity unit" +msgstr "Vytvoriť mernú jednotku" + +msgid "Period type" +msgstr "Typ opakovania" + +msgid "Period days" +msgstr "Dni opakovania" + +msgid "Create chore" +msgstr "Vytvoriť povinnosť" + +msgid "Used in" +msgstr "Použité v" + +msgid "Create battery" +msgstr "Vytvoriť batériu" + +msgid "Edit battery" +msgstr "Upraviť batériu" + +msgid "Edit chore" +msgstr "Upraviť povinnosť" + +msgid "Edit quantity unit" +msgstr "Upraviť mernú jednotku" + +msgid "Edit product" +msgstr "Upraviť výrobok" + +msgid "Edit location" +msgstr "Upraviť umiestnenie" + +msgid "Record data" +msgstr "Zaznamenať údaje" + +msgid "Manage master data" +msgstr "Spravovať hlavné údaje" + +msgid "This will apply to added products" +msgstr "Toto bude použité pri pridávaných výrobkoch" + +msgid "never" +msgstr "nikdy" + +msgid "Add products that are below defined min. stock amount" +msgstr "Pridať výrobky, ktoré majú stav pod minimálnou zásobou" + +msgid "" +"For purchases this amount of days will be added to today for the best before" +" date suggestion" +msgstr "" +"Tento počet dní bude pridaný k dnešnému dátumu ako návrh dátumu minimálnej " +"trvanlivosti" + +msgid "This means 1 %1$s purchased will be converted into %2$s %3$s in stock" +msgstr "Kúpa 1 %1$s bude prevedená na zásobu %2$s %3$s" + +msgid "Login" +msgstr "Prihlasiť sa" + +msgid "Username" +msgstr "Používateľské meno" + +msgid "Password" +msgstr "Heslo" + +msgid "Invalid credentials, please try again" +msgstr "Neplatné prihlasovacie údaje, skúste to prosím ešte raz" + +msgid "Are you sure to delete battery \"%s\"?" +msgstr "Naozaj si prajete odstrániť batériu \"%s\"?" + +msgid "Yes" +msgstr "Áno" + +msgid "No" +msgstr "Nie" + +msgid "Are you sure to delete chore \"%s\"?" +msgstr "Naozaj si prajete odstrániť povinnosť \"%s\"?" + +msgid "\"%s\" could not be resolved to a product, how do you want to proceed?" +msgstr "\"%s\" nebol rozoznaný ako výrobok, ako si želáte pokračovať?" + +msgid "Create or assign product" +msgstr "Vytvoriť alebo priradiť výrobok" + +msgid "Cancel" +msgstr "Zrušiť" + +msgid "Add as new product" +msgstr "Pridať nový produkt" + +msgid "Add as barcode to existing product" +msgstr "Pridať ako čiarový kód k existujúcemu výrobku" + +msgid "Add as new product and prefill barcode" +msgstr "Pridať ako nový výrobok a predvyplniť čiarový kód" + +msgid "Are you sure to delete quantity unit \"%s\"?" +msgstr "Naozaj si prajete odstrániť mernú jednotku \"%s\"?" + +msgid "Are you sure to delete product \"%s\"?" +msgstr "Naozaj si prajete odstrániť výrobok \"%s\"?" + +msgid "Are you sure to delete location \"%s\"?" +msgstr "Naozaj si prajete odstrániť umiestnenie \"%s\"?" + +msgid "Manage API keys" +msgstr "Spravovať API kľúče" + +msgid "REST API & data model documentation" +msgstr "REST API & dokumentácia dátového modelu" + +msgid "API keys" +msgstr "API kľúče" + +msgid "Create new API key" +msgstr "Vytvoriť nový API kľúč" + +msgid "API key" +msgstr "API kľúč" + +msgid "Expires" +msgstr "Vyprší" + +msgid "Created" +msgstr "Vytvorený" + +msgid "This product is not in stock" +msgstr "Tento výrobok nie je na sklade" + +msgid "This means %s will be added to stock" +msgstr "To znamená, že výrobok %s bude pridaný do zásoby" + +msgid "This means %s will be removed from stock" +msgstr "To znamená, že výrobok %s bude odobraný zo zásoby" + +msgid "" +"This means the next execution of this chore is scheduled %s days after the " +"last execution" +msgstr "" +"To znamená, že ďalšie vykonanie tejto povinnosti je naplánované na %s dní po" +" jej poslednom vykonaní" + +msgid "Removed %1$s of %2$s from stock" +msgstr "Odobrané %1$s %2$s zo zásoby" + +msgid "About grocy" +msgstr "O grocy" + +msgid "Close" +msgstr "Zatvoriť" + +msgid "Released on" +msgstr "Vydané" + +msgid "Added %1$s of %2$s to stock" +msgstr "Pridané %1$s %2$s do zásoby" + +msgid "Stock amount of %1$s is now %2$s" +msgstr "Skladová zásoba %1$s je teraz %2$s" + +msgid "Tracked execution of chore %1$s on %2$s" +msgstr "Priebeh plnenia povinnosti %1$s %2$s" + +msgid "Tracked charge cycle of battery %1$s on %2$s" +msgstr "Priebeh nabíjania batérie %1$s %2$s" + +msgid "Consume all %s which are currently in stock" +msgstr "Spotrebovať všetky %s, ktoré sú v zásobe" + +msgid "All" +msgstr "Všetko" + +msgid "Track charge cycle of battery %s" +msgstr "Zaznamenať nabíjanie batérie %s" + +msgid "Track execution of chore %s" +msgstr "Zaznamenať plnenie povinnosti %s" + +msgid "Filter by location" +msgstr "Filtrovať podľa umiestnenia" + +msgid "Search" +msgstr "Hľadať" + +msgid "Not logged in" +msgstr "Neprihlásený" + +msgid "You have to select a product" +msgstr "Musíte vybrať výrobok" + +msgid "You have to select a chore" +msgstr "Musíte vybrať povinnosť" + +msgid "You have to select a battery" +msgstr "Musíte vybrať batériu" + +msgid "A name is required" +msgstr "Je vyžadované meno" + +msgid "A location is required" +msgstr "Je vyžadované umiestnenie" + +msgid "The amount cannot be lower than %s" +msgstr "Množstvo nemôže byť nižšie ako %s" + +msgid "This cannot be negative" +msgstr "Hodnota nemôže byť záporná" + +msgid "A quantity unit is required" +msgstr "Je vyžadovaná merná jednotka" + +msgid "A period type is required" +msgstr "Je vyžadovaný typ opakovania" + +msgid "A best before date is required" +msgstr "Je vyžadovaný dátum spotreby" + +msgid "Settings" +msgstr "Nastavenia" + +msgid "This can only be before now" +msgstr "Toto môže byť iba v minulosti" + +msgid "Calendar" +msgstr "Kalendár" + +msgid "Recipes" +msgstr "Recepty" + +msgid "Edit recipe" +msgstr "Upraviť recept" + +msgid "New recipe" +msgstr "Nový recept" + +msgid "Ingredients list" +msgstr "Zoznam ingrediencií" + +msgid "Add recipe ingredient" +msgstr "Pridať ingrediencu" + +msgid "Edit recipe ingredient" +msgstr "Upraviť ingredienciu" + +msgid "Are you sure to delete recipe \"%s\"?" +msgstr "Naozaj si prajete odstrániť recept \"%s\"?" + +msgid "Are you sure to delete recipe ingredient \"%s\"?" +msgstr "Naozaj si prajete odstrániť ingredienciu \"%s\"?" + +msgid "Are you sure to empty shopping list \"%s\"?" +msgstr "Naozaj si prajete vyprázdniť nákupný zoznam \"%s\"?" + +msgid "Clear list" +msgstr "Vymazať zoznam" + +msgid "Requirements fulfilled" +msgstr "Požiadavky splnené" + +msgid "Put missing products on shopping list" +msgstr "Pridať chýbajúce výrobky do nákupného zoznamu" + +msgid "Enough in stock" +msgstr "Dostatočná zásoba" + +msgid "" +"Not enough in stock, %s ingredient missing but already on the shopping list" +msgid_plural "" +"Not enough in stock, %s ingredients missing but already on the shopping list" +msgstr[0] "" +"Nedostatočná zásoba, chýba %s ingrediencia, ktorá už ale je v nákupnom " +"zozname" +msgstr[1] "" +"Nedostatočná zásoba, chýbajú %s ingrediencie, ktoré už ale sú v nákupnom " +"zozname" +msgstr[2] "" +"Nedostatočná zásoba, chýba %s ingrediencií, ktoré už ale sú v nákupnom " +"zozname" +msgstr[3] "" +"Nedostatočná zásoba, chýba %s ingrediencií, ktoré už ale sú v nákupnom " +"zozname" + +msgid "Expand to fullscreen" +msgstr "Rozšíriť na celú obrazovku" + +msgid "Ingredients" +msgstr "Ingrediencie" + +msgid "Preparation" +msgstr "Príprava" + +msgid "Recipe" +msgstr "Recept" + +msgid "Not enough in stock, %1$s missing, %2$s already on shopping list" +msgstr "Nedostatočná zásoba, z %1$s potrebných sú/je %2$s v nákupnom zozname" + +msgid "Show notes" +msgstr "Ukázať poznámky" + +msgid "Put missing amount on shopping list" +msgstr "Pridať chýbajúce množstvo do nákupného zoznamu" + +msgid "" +"Are you sure to put all missing ingredients for recipe \"%s\" on the " +"shopping list?" +msgstr "" +"Naozaj si prajete pridať všetky chýbajúce ingrediencie z receptu \"%s\" do " +"nákupného zoznamu?" + +msgid "Added for recipe %s" +msgstr "Pridané pre recept %s" + +msgid "Manage users" +msgstr "Spravovať používateľov" + +msgid "User" +msgstr "Používateľ" + +msgid "Users" +msgstr "Používatelia" + +msgid "Are you sure to delete user \"%s\"?" +msgstr "Naozaj si prajete odstrániť používateľa \"%s\"?" + +msgid "Create user" +msgstr "Vytvoriť používateľa" + +msgid "Edit user" +msgstr "Upraviť používateľa" + +msgid "First name" +msgstr "Krstné meno" + +msgid "Last name" +msgstr "Priezvisko" + +msgid "A username is required" +msgstr "Je vyžadované prihlasovacie meno" + +msgid "Confirm password" +msgstr "Potvrdiť heslo" + +msgid "Passwords do not match" +msgstr "Heslá sa nezhodujú" + +msgid "Change password" +msgstr "Zmeniť heslo" + +msgid "Done by" +msgstr "Vykonal(a)" + +msgid "Last done by" +msgstr "Naposledy vykonal(a)" + +msgid "Unknown" +msgstr "Neznámy" + +msgid "Filter by chore" +msgstr "Filtrovať podľa povinnosti" + +msgid "Chores journal" +msgstr "Denník povinností" + +msgid "0 means suggestions for the next charge cycle are disabled" +msgstr "Pre vypnutie návrhu na najbližšie nabíjanie batérie zadajte 0" + +msgid "Charge cycle interval (days)" +msgstr "Interval nabíjania batérie (dni)" + +msgid "Last price" +msgstr "Posledná cena" + +msgid "Price history" +msgstr "História cien" + +msgid "No price history available" +msgstr "História cien nie je dostupná" + +msgid "Price" +msgstr "Cena" + +msgid "in %s per purchase quantity unit" +msgstr "v %s na mernú jednotku nákupu" + +msgid "The price cannot be lower than %s" +msgstr "Cena nemôže byť nižšia ako %s" + +msgid "Unit" +msgstr "Jednotka" + +msgid "%s Unit" +msgid_plural "%s Units" +msgstr[0] "%s jednotka" +msgstr[1] "%s jednotky" +msgstr[2] "%s jednotiek" +msgstr[3] "%s jednotiek" + +msgid "%s chore is due to be done" +msgid_plural "%s chores are due to be done" +msgstr[0] "%s povinnosť má byť splnená" +msgstr[1] "%s povinnosti majú byť splnené" +msgstr[2] "%s povinností má byť splnených" +msgstr[3] "%s povinností má byť splnených" + +msgid "%s chore is overdue to be done" +msgid_plural "%s chores are overdue to be done" +msgstr[0] "%s povinnosť už mala byť splnená" +msgstr[1] "%s povinnosti už mali byť splnené" +msgstr[2] "%s povinností už malo byť splnených" +msgstr[3] "%s povinností už malo byť splnených" + +msgid "%s battery is due to be charged" +msgid_plural "%s batteries are due to be charged" +msgstr[0] "%s batéria by mala byť nabitá" +msgstr[1] "%s batérie by mali byť nabité" +msgstr[2] "%s batérií by malo byť nabitých" +msgstr[3] "%s batérií by malo byť nabitých" + +msgid "%s battery is overdue to be charged" +msgid_plural "%s batteries are overdue to be charged" +msgstr[0] "%s batéria už mala byť nabitá" +msgstr[1] "%s batérie už mali byť nabité" +msgstr[2] "%s batérií už malo byť nabitých" +msgstr[3] "%s batérií už malo byť nabitých" + +msgid "in singular form" +msgstr "v jednotnom čísle" + +msgid "Never expires" +msgstr "Nikdy neexpiruje" + +msgid "This cannot be lower than %s" +msgstr "Hodnota nemôže byť nižšia ako %s" + +msgid "-1 means that this product never expires" +msgstr "-1 znamená, že výrobok nikdy neexpiruje." + +msgid "Quantity unit" +msgstr "Merná jednotka" + +msgid "" +"Only check if a single unit is in stock (a different quantity can then be " +"used above)" +msgstr "" +"Stačí, ak je skladom jedna merná jednotka (vyššie tak môže byť použité rôzne" +" množstvo)" + +msgid "" +"Are you sure to consume all ingredients needed by recipe \"%s\" (ingredients" +" marked with \"check only if a single unit is in stock\" will be ignored)?" +msgstr "" +"Naozaj si prajete spotrebovať všetky ingrediencie potrebné v recepte \"%s\" " +"(ingrediencie označené \"Stačí, ak je skladom jedna merná jednotka\" budú " +"ignorované)?" + +msgid "Removed all ingredients of recipe \"%s\" from stock" +msgstr "Všetky ingrediencie z receptu \"%s\" boli odobraté zo zásoby" + +msgid "Consume all ingredients needed by this recipe" +msgstr "Spotrebovať všetky ingredience použité v tomto recepte" + +msgid "Click to show technical details" +msgstr "Kliknite pre zobrazenie technických podrobností" + +msgid "Error while saving, probably this item already exists" +msgstr "Chyba počas ukladania, táto položka už pravdepodobne existuje" + +msgid "Error details" +msgstr "Podrobnosti o chybe" + +msgid "Tasks" +msgstr "Úlohy" + +msgid "Show done tasks" +msgstr "Zobraziť dokončené úlohy" + +msgid "Task" +msgstr "Úloha" + +msgid "Due" +msgstr "Termín splnenia" + +msgid "Assigned to" +msgstr "Priradené používateľovi" + +msgid "Mark task \"%s\" as completed" +msgstr "Označiť úlohu \"%s\" ako splnenú" + +msgid "Uncategorized" +msgstr "Bez kategórie" + +msgid "Task categories" +msgstr "Kategórie úloh" + +msgid "Create task" +msgstr "Vytvoriť úlohu" + +msgid "A due date is required" +msgstr "Termín splnenia je povinný" + +msgid "Category" +msgstr "Kategória" + +msgid "Edit task" +msgstr "Upraviť úlohu" + +msgid "Are you sure to delete task \"%s\"?" +msgstr "Naozaj si prajete odstrániť úlohu \"%s\"?" + +msgid "%s task is due to be done" +msgid_plural "%s tasks are due to be done" +msgstr[0] "%s úloha má byť splnená" +msgstr[1] "%s úlohy majú byť splnené" +msgstr[2] "%s úloh má byť splnených" +msgstr[3] "%s úloh má byť splnených" + +msgid "%s task is overdue to be done" +msgid_plural "%s tasks are overdue to be done" +msgstr[0] "%s úloha už mala byť splnená" +msgstr[1] "%s úlohy už mali byť splnené" +msgstr[2] "%s úloh už malo byť splnených" +msgstr[3] "%s úloh už malo byť splnených" + +msgid "Edit task category" +msgstr "Upraviť kategóriu úlohy" + +msgid "Create task category" +msgstr "Vytvoriť kategóriu úloh" + +msgid "Product groups" +msgstr "Skupiny výrobkov" + +msgid "Ungrouped" +msgstr "Bez skupiny" + +msgid "Create product group" +msgstr "Vytvoriť skupinu výrobkov" + +msgid "Edit product group" +msgstr "Upraviť skupinu výrobkov" + +msgid "Product group" +msgstr "Skupina výrobkov" + +msgid "Are you sure to delete product group \"%s\"?" +msgstr "Naozaj si prajete odstrániť skupinu výrobkov \"%s\"?" + +msgid "Stay logged in permanently" +msgstr "Zostať prihlásený" + +msgid "When not set, you will get logged out at latest after 30 days" +msgstr "Ak nie je zaškrtnuté, budete odhlásený najneskôr o 30 dní" + +msgid "Filter by status" +msgstr "Filtrovať podľa stavu" + +msgid "Below min. stock amount" +msgstr "Pod min. množstvom zásoby" + +msgid "Expiring soon" +msgstr "Čoskoro vyprší dátum spotreby" + +msgid "Already expired" +msgstr "Po záruke" + +msgid "Due soon" +msgstr "Blížiaci sa termín splnenia" + +msgid "Overdue" +msgstr "Už malo byť splnené" + +msgid "View settings" +msgstr "Zobraziť nastavenia" + +msgid "Auto reload on external changes" +msgstr "Automaticky obnoviť pri zmene údajov iným používateľom" + +msgid "Enable night mode" +msgstr "Povoliť tmavý režim" + +msgid "Auto enable in time range" +msgstr "Automaticky povoliť v určený čas" + +msgid "From" +msgstr "Od" + +msgid "in format" +msgstr "vo formáte" + +msgid "To" +msgstr "Do" + +msgid "Time range goes over midnight" +msgstr "Časový rozsah presahuje cez polnoc" + +msgid "Product picture" +msgstr "Obrázok výrobku" + +msgid "No file selected" +msgstr "Nie je vybraný žiadny súbor" + +msgid "If you don't select a file, the current picture will not be altered" +msgstr "Ak nevyberiete súbor, aktuálny obrázok zostane zachovaný" + +msgid "Delete" +msgstr "Odstrániť" + +msgid "The current picture will be deleted when you save the product" +msgstr "Aktuálny obrázok bude odstránený pri uložení výrobku" + +msgid "Select file" +msgstr "Vybrať súbor" + +msgid "Image of product %s" +msgstr "Obrázok výrobku %s" + +msgid "" +"This product cannot be deleted because it is in stock, please remove the " +"stock amount first." +msgstr "" +"Tento výrobok nie je možné odstrániť, pretože má nenulovú zásobu. Najprv " +"prosím odstráňte všetku zásobu výrobku." + +msgid "Delete not possible" +msgstr "Odstránenie nie je možné" + +msgid "Equipment" +msgstr "Vybavenie" + +msgid "Instruction manual" +msgstr "Návod na použitie" + +msgid "The selected equipment has no instruction manual" +msgstr "Vybrané vybavenie nemá návod na použitie" + +msgid "Notes" +msgstr "Poznámky" + +msgid "Edit equipment" +msgstr "Upraviť vybavenie" + +msgid "Create equipment" +msgstr "Vytvoriť vybavenie" + +msgid "" +"If you don't select a file, the current instruction manual will not be " +"altered" +msgstr "" +"Ak nevyberiete žiadny súbor, aktuálny návod na použitie zostane zachovaný" + +msgid "No instruction manual available" +msgstr "Návod na použitie nie je dostupný" + +msgid "" +"The current instruction manual will be deleted when you save the equipment" +msgstr "Aktuálny návod na použitie bude odstránený pri uložení vybavenia" + +msgid "No picture available" +msgstr "Obrázok nie je k dispozícii" + +msgid "Filter by product group" +msgstr "Filtrovať podľa skupiny výrobkov" + +msgid "Presets for new products" +msgstr "Predvolené hodnoty pre nové výrobky" + +msgid "Included recipes" +msgstr "Čiastkové recepty" + +msgid "A recipe is required" +msgstr "Je vyžadovaný recept" + +msgid "Add included recipe" +msgstr "Pridať čiastkový recept" + +msgid "Edit included recipe" +msgstr "Upraviť čiastkový recept" + +msgid "Group" +msgstr "Skupina" + +msgid "This will be used as a headline to group ingredients together" +msgstr "Toto bude použité ako nadpis pre skupinu ingrediencií" + +msgid "Journal" +msgstr "Denník" + +msgid "Stock journal" +msgstr "Denník zásob" + +msgid "Filter by product" +msgstr "Filtrovať podľa výrobku" + +msgid "Booking time" +msgstr "Čas rezervácie" + +msgid "Booking type" +msgstr "Typ rezervácie" + +msgid "Undo booking" +msgstr "Zrušiť rezerváciu" + +msgid "Undone on" +msgstr "Rezervácia zrušená" + +msgid "Batteries journal" +msgstr "Denník batérií" + +msgid "Filter by battery" +msgstr "Filtrovať podľa batérie" + +msgid "Undo charge cycle" +msgstr "Zrušiť nabíjanie" + +msgid "Undo chore execution" +msgstr "Zrušiť vykonanie povinnosti" + +msgid "Chore execution successfully undone" +msgstr "Vykonanie povinnosti zrušené" + +msgid "Undo" +msgstr "Zrušiť" + +msgid "Booking successfully undone" +msgstr "Rezervácia úspešne zrušená" + +msgid "Charge cycle successfully undone" +msgstr "Nabíjanie batérie úspešne zrušené" + +msgid "This cannot be negative and must be an integral number" +msgstr "Toto musí byť celé nezáporné číslo" + +msgid "Disable stock fulfillment checking for this ingredient" +msgstr "Vypnúť kontrolu stavu zásob pre túto ingredienciu" + +msgid "Add all list items to stock" +msgstr "Pridať všetky položky zoznamu do zásob" + +msgid "Add %1$s of %2$s to stock" +msgstr "Pridať %1$s %2$s do zásob" + +msgid "Adding shopping list item %1$s of %2$s" +msgstr "Pridávam položku nákupného zoznamu %1$s %2$s" + +msgid "Use a specific stock item" +msgstr "Použiť požadovanú položku zásob" + +msgid "" +"The first item in this list would be picked by the default rule which is " +"\"First expiring first, then first in first out\"" +msgstr "" +"Prvá položka v tomto zozname bude vybraná predvoleným pravidlom, ktoré je " +"\"Najprv expirujúce, následne podľa poradia naskladnenia\"" + +msgid "Mark %1$s of %2$s as open" +msgstr "Označiť %1$s of %2$s ako otvorené" + +msgid "" +"When this product was marked as opened, the best before date will be " +"replaced by today + this amount of days (a value of 0 disables this)" +msgstr "" + +msgid "Default best before days after opened" +msgstr "Dátum spotreby od otvorenia" + +msgid "Marked %1$s of %2$s as opened" +msgstr "Označené %1$s %2$s ako otvorené" + +msgid "Mark as opened" +msgstr "Označiť ako otvorené" + +msgid "Not opened" +msgstr "Neotvorené" + +msgid "Opened" +msgstr "Otvorené" + +msgid "%s opened" +msgstr "%s otvorený" + +msgid "Product expires" +msgstr "Výrobok expiruje" + +msgid "Task due" +msgstr "Úloha aktívna o" + +msgid "Chore due" +msgstr "Povinnosť" + +msgid "Battery charge cycle due" +msgstr "Batéria má byť nabitá" + +msgid "Show clock in header" +msgstr "Zobraziť hodiny v hlavičke" + +msgid "Stock settings" +msgstr "Nastavenia zásob" + +msgid "Shopping list to stock workflow" +msgstr "Nákupný zoznam do výberu zásob" + +msgid "" +"Automatically do the booking using the last price and the amount of the " +"shopping list item, if the product has \"Default best before days\" set" +msgstr "" +"Automaticky zarezervovať s použitím poslednej ceny a množstva v nákupnom " +"zozname, ak má výrobok nastavený \"Predvolený dátum spotreby\"" + +msgid "Skip" +msgstr "Preskočiť" + +msgid "Servings" +msgstr "Porcie" + +msgid "Costs" +msgstr "Náklady" + +msgid "Based on the prices of the last purchase per product" +msgstr "Založené na cenách výrobkov pri ich poslednom nákupe" + +msgid "The ingredients listed here result in this amount of servings" +msgstr "Zobrazené ingrediencie zodpovedajú takémuto množstvu porcií" + +msgid "Do not check against the shopping list when adding missing items to it" +msgstr "Nekontrolovať nákupný zoznam pri pridávaní chýbajúcich položiek" + +msgid "" +"By default the amount to be added to the shopping list is \"needed amount - " +"stock amount - shopping list amount\" - when this is enabled, it is only " +"checked against the stock amount, not against what is already on the " +"shopping list" +msgstr "" +"Pri pridávaní položiek do nákupného zoznamu sa používa vzorec \"potrebné " +"množstvo - zásoba - množstvo v nákupnom zozname\". Ak je táto voľba zapnutá," +" množstvo v nákupnom zozname nie je brané do úvahy." + +msgid "Picture" +msgstr "Obrázok" + +msgid "Uncheck ingredients to not put them on the shopping list" +msgstr "Odznačte ingrediencie, ktoré nechcete pridať do nákupného zoznamu" + +msgid "This is for statistical purposes only" +msgstr "Toto je iba pre účely štatistík" + +msgid "You have to select a recipe" +msgstr "Musíte vybrať recept" + +msgid "Key type" +msgstr "Typ kľúča" + +msgid "Share/Integrate calendar (iCal)" +msgstr "Zdieľať/integrovať kalendár (formát iCal)" + +msgid "" +"Use the following (public) URL to share or integrate the calendar in iCal " +"format" +msgstr "" +"Použiť túto (verejnú) URL adresu na zdieľanie alebo integráciu kalendára vo " +"formáte iCal" + +msgid "Allow partial units in stock" +msgstr "Povoliť čiastkové jednotky v zásobe" + +msgid "Enable tare weight handling" +msgstr "Aktivovať používanie tary" + +msgid "" +"This is useful e.g. for flour in jars - on purchase/consume/inventory you " +"always weigh the whole jar, the amount to be posted is then automatically " +"calculated based on what is in stock and the tare weight defined below" +msgstr "" +"Toto je užitočné pri produktoch vo vlastných nádobách, ktoré sa vážia " +"vrátane nádoby. Ich hmotnosť je automaticky odpočítaná podľa nižšie " +"definovanej tary." + +msgid "Tare weight" +msgstr "Tara" + +msgid "" +"Tare weight handling enabled - please weigh the whole container, the amount " +"to be posted will be automatically calculcated" +msgstr "" +"Je aktívna tara. Prosím, odvážte celý výrobok, vrátane obalu, jeho hmotnosť " +"bude automaticky odrátaná." + +msgid "You have to select a location" +msgstr "Musíte vybrať umiestnenie" + +msgid "List" +msgstr "Zoznam" + +msgid "Gallery" +msgstr "Galéria" + +msgid "The current picture will be deleted when you save the recipe" +msgstr "Aktuálny obrázok bude odstránený pri uložení receptu" + +msgid "Show product details" +msgstr "Zobraziť podrobnosti o výrobku" + +msgid "Stock journal for this product" +msgstr "Zobraziť denník k tomuto výrobku" + +msgid "Show chore details" +msgstr "Zobraziť podrobnosti o povinnosti" + +msgid "Journal for this chore" +msgstr "Denník pre túto povinnosť" + +msgid "Show battery details" +msgstr "Zobraziť podrobnosti o batérii" + +msgid "Journal for this battery" +msgstr "Denník pre túto batériu" + +msgid "System info" +msgstr "Systémové informácie" + +msgid "Changelog" +msgstr "Zoznam zmien" + +msgid "will be multiplied a factor of %1$s to get %2$s" +msgstr "bude vynásobený faktorom %1$s, aby bolo dosiahnuté %2$s" + +msgid "The given date is earlier than today, are you sure?" +msgstr "Zadaný dátum je v minulosti, ste si istý?" + +msgid "Product count" +msgstr "Množstvo produktu" + +msgid "Type a new product name or barcode and hit TAB to start a workflow" +msgstr "" +"Napíšte meno výrobku alebo čiarový kód a stlačením tabulátora spustíte výber" + +msgid "" +"This will be used as the default setting when adding this product as a " +"recipe ingredient" +msgstr "" +"Toto bude použité ako predvolené nastavenie pri pridávaní tohto výrobku ako " +"ingrediencie" + +msgid "Add item" +msgstr "Pridať položku" + +msgid "Selected shopping list" +msgstr "Vybrať nákupný zoznam" + +msgid "New shopping list" +msgstr "Nový nákupný zoznam" + +msgid "Delete shopping list" +msgstr "Odstrániť nákupný zoznam" + +msgid "Chores settings" +msgstr "Nastavenia povinností" + +msgid "Batteries settings" +msgstr "Nastavenie batérií" + +msgid "Tasks settings" +msgstr "Nastavenia úloh" + +msgid "Create shopping list" +msgstr "Vytvoriť nákupný zoznam" + +msgid "Are you sure to delete shopping list \"%s\"?" +msgstr "Naozaj si prajete odstrániť nákupný zoznam \"%s\"?" + +msgid "Average shelf life" +msgstr "Priemerná doba uskladnenia" + +msgid "Spoil rate" +msgstr "Rýchlosť kazenia" + +msgid "Show more" +msgstr "Zobraziť viac" + +msgid "Show less" +msgstr "Zobraziť menej" + +msgid "The amount must be between %1$s and %2$s" +msgstr "Množstvo musí byť v rozmedzí od %1$s do %2$s" + +msgid "Day of month" +msgstr "Deň v mesiaci" + +msgid "Monday" +msgstr "Pondelok" + +msgid "Tuesday" +msgstr "Utorok" + +msgid "Wednesday" +msgstr "Streda" + +msgid "Thursday" +msgstr "Štvrtok" + +msgid "Friday" +msgstr "Piatok" + +msgid "Saturday" +msgstr "Sobota" + +msgid "Sunday" +msgstr "Nedeľa" + +msgid "Configure userfields" +msgstr "Nastaviť používateľské polia" + +msgid "Userfields" +msgstr "Používateľské polia" + +msgid "Filter by entity" +msgstr "Filtrovať podľa entity" + +msgid "Entity" +msgstr "Entita" + +msgid "Caption" +msgstr "Nadpis" + +msgid "Type" +msgstr "Typ" + +msgid "Create userfield" +msgstr "Vytvoriť používateľské pole" + +msgid "A entity is required" +msgstr "Vyžaduje sa entita" + +msgid "A caption is required" +msgstr "Vyžaduje sa popisok" + +msgid "A type is required" +msgstr "Vyžaduje sa typ" + +msgid "Show as column in tables" +msgstr "Zobraziť ako riadok v tabuľkách" + +msgid "This is required and can only contain letters and numbers" +msgstr "Toto pole je povinné a môže obsahovať iba písmená a čísla" + +msgid "Edit userfield" +msgstr "Upraviť používateľské pole" + +msgid "Plural forms" +msgstr "Formy plurálu" + +msgid "One plural form per line, the current language requires" +msgstr "Jedna forma množného čísla na riadok, aktuálny jazyk vyžaduje" + +msgid "Plural count" +msgstr "Počet plurálov" + +msgid "Plural rule" +msgstr "Pravidlá pre plurál" + +msgid "in plural form" +msgstr "v množnom čísle" + +msgid "Not enough in stock, %s ingredient missing" +msgid_plural "Not enough in stock, %s ingredients missing" +msgstr[0] "Nedostatočná zásoba, chýba %s ingrediencia" +msgstr[1] "Nedostatočná zásoba, chýbajú %s ingrediencie" +msgstr[2] "Nedostatočná zásoba, chýba %s ingrediencií" +msgstr[3] "Nedostatočná zásoba, chýba %s ingrediencií" + +msgid "The amount cannot be lower than %1$s or equal %2$s" +msgstr "Množstvo nemôže byť menšie ako %1$s alebo rovné %2$s" + +msgid "Not enough in stock, but already on the shopping list" +msgstr "Nedostatočná zásoba, ale už je v nákupnom zozname" + +msgid "Not enough in stock" +msgstr "Nedostatočná zásoba" + +msgid "Expiring soon days" +msgstr "Dni blížiaceho sa uplynutia dátumu spotreby" + +msgid "Default location" +msgstr "Predvolené umiestnenie" + +msgid "Default amount for purchase" +msgstr "Predvolené množstvo pre nákup" + +msgid "Default amount for consume" +msgstr "Predvolené množstvo pre spotrebu" + +msgid "Variable amount" +msgstr "Premenlivé množstvo" + +msgid "" +"When this is not empty, it will be shown instead of the amount entered above" +" while the amount there will still be used for stock fulfillment checking" +msgstr "" + +msgid "Track date only" +msgstr "Zaznamenávať iba dátum" + +msgid "When enabled only the day of an execution is tracked, not the time" +msgstr "" +"Ak je zapnuté, bude sa zaznamenávať iba dátum vykonanie, bez časového " +"razítka" + +msgid "Consume %1$s of %2$s" +msgstr "Spotrebovať %1$s %2$s" + +msgid "Meal plan" +msgstr "Jedálniček" + +msgid "Add recipe to %s" +msgstr "Pridať recept do %s" + +msgid "%s serving" +msgid_plural "%s servings" +msgstr[0] "%s porcia" +msgstr[1] "%s porcie" +msgstr[2] "%s porcií" +msgstr[3] "%s porcií" + +msgid "Week costs" +msgstr "Týždenné náklady" + +msgid "Configuration" +msgstr "Nastavenia" + +msgid "A predefined list of values, one per line" +msgstr "Preddefinovaný zoznam hodnôt, jedna na riadok" + +msgid "Chores due soon days" +msgstr "Počet dní do termínu plnenia povinností" + +msgid "Batteries due to be charged soon days" +msgstr "Počet dní do termínu, kedy by mali byť batérie nabité" + +msgid "Tasks due soon days" +msgstr "Počet dní do termínu splnenia úloh" + +msgid "Products" +msgstr "Výrobky" + +msgid "Marked task %s as completed on %s" +msgstr "Úloha %s označená ako hotová v %s" + +msgid "Booking has subsequent dependent bookings, undo not possible" +msgstr "Na tejto rezervácii závisia ďalšie rezervácie, zrušenie nie je možné" + +msgid "per serving" +msgstr "na porciu" + +msgid "Never" +msgstr "Nikdy" + +msgid "Today" +msgstr "Dnes" + +msgid "Consume %1$s of %2$s as spoiled" +msgstr "Spotrebovať %1$s %2$s ako pokazené" + +msgid "Not all ingredients of recipe \"%s\" are in stock, nothing removed" +msgstr "" +"Nie všetky ingredience v recepte \"%s\" sú v zásobe, nič nebude odstránené" + +msgid "Undo task \"%s\"" +msgstr "Zrušiť úlohu \"%s\"" + +msgid "Due date rollover" +msgstr "Posunutie termínu" + +msgid "" +"When enabled the chore can never be overdue, the due date will shift forward" +" each day when due" +msgstr "" +"Ak je zapnuté, povinnosť nikdy nebude meškať, termín sa pri oneskorení " +"automaticky posunie dopredu" + +msgid "Location Content Sheet" +msgstr "Hárok s obsahom umiestnenia" + +msgid "Print" +msgstr "Tlač" + +msgid "all locations" +msgstr "všetky umiestnenia" + +msgid "" +"Here you can print a page per location with the current stock, maybe to hang" +" it there and note the consumed things on it." +msgstr "" +"Tu si môžete pre každé umiestnenie vytlačiť zoznam zásob, zavesiť si ho a " +"značiť naň spotrebované položky." + +msgid "this location" +msgstr "toto umiestnenie" + +msgid "Consumend amount" +msgstr "Spotrebované množstvo" + +msgid "Time of printing" +msgstr "Čas tlače" + +msgid "Are you sure to delete equipment \"%s\"?" +msgstr "Naozaj si prajete odstrániť zariadenie \"%s\"?" + +msgid "Parent product" +msgstr "Rodičovský výrobok" + +msgid "" +"Not possible because this product is already used as a parent product in " +"another product" +msgstr "" +"Toto sa nedá, pretože tento výrobok je už použitý ako rodičovský výrobok pre" +" iný výrobok" + +msgid "Default conversions" +msgstr "Východzie prevodz" + +msgid "Factor" +msgstr "Faktor" + +msgid "1 %s is the same as..." +msgstr "1 %s je rovnaký ako..." + +msgid "Create QU conversion" +msgstr "Vytvoriť jednotku prevodu" + +msgid "Default for QU" +msgstr "Predvolená jednotka" + +msgid "Quantity unit from" +msgstr "Z množstevných jednotiek" + +msgid "Quantity unit to" +msgstr "Na množstevné jednotky" + +msgid "" +"This cannot be lower than %1$s and must be a valid number with max. %2$s " +"decimal places" +msgstr "" +"Hodnota nemôže byť nižšia ako %1$s a musí to byť platné číslo s max. %2$s " +"desatinnými miestami." + +msgid "This cannot be equal to %s" +msgstr "Hodnota sa nemôže rovnať %s" + +msgid "This means 1 %1$s is the same as %2$s %3$s" +msgstr "To znamená, že 1 %1$s je to isté ako %2$s %3%s" + +msgid "QU conversions" +msgstr "Prevod množstevných jednotiek" + +msgid "Product overrides" +msgstr "Špeciálne nastavenia výrobku" + +msgid "Override for product" +msgstr "Použiť špeciálne nastavenie pre výrobok" + +msgid "This equals %1$s %2$s in stock" +msgstr "To zodpovedá %1$s %2$s v zásobe" + +msgid "Edit QU conversion" +msgstr "Upraviť konverziu jednotiek" + +msgid "An assignment type is required" +msgstr "Vyžaduje sa typ priradenia" + +msgid "Assignment type" +msgstr "Typ priradenia" + +msgid "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti je naplánované jedeň " +"deň po jej poslednom vykonaní" + +msgid "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution, but only for the weekdays selected below" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti je naplánované jedeň " +"deň po jej poslednom vykonaní, ale iba vo vybraných dňoch v týždni" + +msgid "This means the next execution of this chore is not scheduled" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti nie je naplánované" + +msgid "" +"This means the next execution of this chore is scheduled on the below " +"selected day of each month" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti je naplánované vo " +"vybraný deň každého mesiaca" + +msgid "" +"This means the next execution of this chore will not be assigned to anyone" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti nebude priradené " +"žiadnej osobe" + +msgid "" +"This means the next execution of this chore will be assigned to the one who " +"executed it least" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti bude priradené osobe, " +"ktorá túto povinnosť vykonávala najmenej" + +msgid "This means the next execution of this chore will be assigned randomly" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti bude priradené náhodnej" +" osobe" + +msgid "" +"This means the next execution of this chore will be assigned to the next one" +" in alphabetical order" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti bude priradené osobám " +"podľa abecedného poradia" + +msgid "Assign to" +msgstr "Priradiť používateľovi" + +msgid "This assignment type requires that at least one is assigned" +msgstr "Tejto typ priradenia vyžaduje priradenie aspoň jednej osoby" + +msgid "%s chore is assigned to me" +msgid_plural "%s chores are assigned to me" +msgstr[0] "%s povinnosť je priradená mne" +msgstr[1] "%s povinnosti sú priradené mne" +msgstr[2] "%s povinností sú priradené mne" +msgstr[3] "%s povinností sú priradené mne" + +msgid "Assigned to me" +msgstr "Priradené mne" + +msgid "assigned to %s" +msgstr "priradené používateľovi %s" + +msgid "Filter by assignment" +msgstr "Filtrovať podľa priradenia" + +msgid "Consume product on chore execution" +msgstr "Spotrebovať výrobok pri vykonaní povinnosti" + +msgid "Are you sure to delete user field \"%s\"?" +msgstr "Naozaj si prajete odstrániť pole \"%s\" definované používateľom?" + +msgid "Userentities" +msgstr "Používateľské entity" + +msgid "Create userentity" +msgstr "Vytvoriť používateľskú entitu" + +msgid "Show in sidebar menu" +msgstr "Zobraziť v bočnej ponuke" + +msgid "Edit userentity" +msgstr "Upraviť používateľskú entitu" + +msgid "Edit %s" +msgstr "Upraviť %s" + +msgid "Create %s" +msgstr "Vytvoriť %s" + +msgid "Are you sure to delete this userobject?" +msgstr "Naozaj si prajete odstrániť objekt definovaný používateľom?" + +msgid "Icon CSS class" +msgstr "CSS trieda ikony" + +msgid "For example" +msgstr "Napríklad" + +msgid "Configure fields" +msgstr "Nastavenia polí" + +msgid "Quantity unit plural form testing" +msgstr "Testovanie tvarov množných čísiel množstevných jednotiek" + +msgid "Result" +msgstr "Výsledok" + +msgid "Test plural forms" +msgstr "Otestovať množné čísla" + +msgid "Scan a barcode" +msgstr "Naskenovať čiarový kód" + +msgid "Error while initializing the barcode scanning library" +msgstr "Chyba pri inicializácii knižnice skenovania čiarových kódov" + +msgid "" +"The resulting price of this ingredient will be multiplied by this factor" +msgstr "Konečná cena tejto ingrediencie bude vynásobená týmto faktorom" + +msgid "Price factor" +msgstr "Cenový faktor" + +msgid "Do you find grocy useful?" +msgstr "Páči sa vám grocy?" + +msgid "Say thanks" +msgstr "Poďakovanie" + +msgid "Search for recipes containing this product" +msgstr "Vyhľadať recepty obsahujúce tento výrobok" + +msgid "Add to shopping list" +msgstr "Pridať do nákupného zoznamu" + +msgid "Added %1$s of %2$s to the shopping list \"%3$s\"" +msgstr "Pridané %1$s %2$s do nákupného zoznamu \"%3$s\"" + +msgid "Output" +msgstr "Výstup" + +msgid "Energy (kcal)" +msgstr "Energia (kcal)" + +msgid "Per stock quantity unit" +msgstr "Na jednotku množstva zásoby" + +msgid "Barcode scanner testing" +msgstr "Testovanie skenera čiarových kódov" + +msgid "Expected barcode" +msgstr "Očakávaný čiarový kód" + +msgid "Scan field" +msgstr "Skenovacie pole" + +msgid "Scanned barcodes" +msgstr "Naskenované čiarové kódy" + +msgid "Hit" +msgstr "Zásah" + +msgid "Miss" +msgstr "Vedľa" + +msgid "Display recipe" +msgstr "Zobraziť recept" + +msgid "Accumulate sub products min. stock amount" +msgstr "Sčítavať min. skladové množstvá podproduktov" + +msgid "" +"If enabled, the min. stock amount of sub products will be accumulated into " +"this product, means the sub product will never be \"missing\", only this " +"product" +msgstr "" +"Ak je povolené, min. skladové množstvá podvýrobkov budú sčítané do tohto " +"výrobku, to znamená, že podvýrobky nikdy nebudú \"chýbať\", iba tento " +"výrobok" + +msgid "Are you sure to remove this conversion?" +msgstr "Naozaj si prajete odstrániť tento prevod?" + +msgid "Unit price" +msgstr "Cena za jednotku" + +msgid "Total price" +msgstr "Celková cena" + +msgid "in %s and based on the purchase quantity unit" +msgstr "v %s a založené na merných jednotkách nákupu" + +msgid "Unlimited" +msgstr "Neobmedzene" + +msgid "Clear" +msgstr "Vymazať" + +msgid "Are you sure to remove the included recipe \"%s\"?" +msgstr "Naozaj si prajete odstrániť čiastkový recept \"%s\"?" + +msgid "Period interval" +msgstr "Interval opakovania" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s days" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti by malo byť naplánované" +" každých %s dní" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s weeks" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti by malo byť naplánované" +" každých %s týždňov" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s months" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti by malo byť naplánované" +" každých %s mesiacov" + +msgid "" +"This means the next execution of this chore is scheduled 1 year after the " +"last execution" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti je naplánované jedeň " +"rok po jej poslednom vykonaní" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s years" +msgstr "" +"Toto znamená, že ďalšie vykonávanie tejto povinnosti by malo byť naplánované" +" každých %s rokov" + +msgid "Transfer" +msgstr "Presun" + +msgid "From location" +msgstr "Z umiestnenia" + +msgid "To location" +msgstr "Do umiestnenia" + +msgid "There are no units available at this location" +msgstr "V tomto umiestnení nie sú dostupné žiadne jednotky" + +msgid "Amount: %1$s; Expires on %2$s; Bought on %3$s" +msgstr "Množstvo: %1$s; Expiruje dňa %2$s; Kúpené dňa %3$s" + +msgid "Transfered %1$s of %2$s from %3$s to %4$s" +msgstr "Presunuté %1$s %2$s z %3$s do %4$s" + +msgid "Show stock entries" +msgstr "Zobraziť položky v zásobe" + +msgid "Stock entries" +msgstr "Položky zásoby" + +msgid "Best before date" +msgstr "Dátum spotreby" + +msgid "Purchased date" +msgstr "Dátum nákupu" + +msgid "Consume all %s for this stock entry" +msgstr "Spotrebovať všetky %s pre túto zásobu" + +msgid "The amount cannot be lower than %1$s" +msgstr "Množstvo nemôže byť menšie ako %1$s" + +msgid "Stock entry successfully updated" +msgstr "Položka zásoby úspešne aktualizovaná" + +msgid "Edit stock entry" +msgstr "Upraviť zásobu" + +msgid "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" +msgstr "" +"Prístup ku kamere je možný iba tam, kde to podporuje a povoľuje váš " +"prehliadač a keď je ku grocy pristupované prostredníctvom bezpečného " +"(https://) spojenia" + +msgid "Keep screen on" +msgstr "Nevypínať obrazovku" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "Nechať obrazovku zapnutú počas zobrazenia \"karty na celú obrazovku\"" + +msgid "A purchased date is required" +msgstr "Vyžaduje sa zadanie dátumu kúpy" + +msgid "" +"When a product is selected, one unit (per serving in purchase quantity unit)" +" will be added to stock on consuming this recipe" +msgstr "" + +msgid "Produces product" +msgstr "Vytvára výrobok" + +msgid "This booking cannot be undone" +msgstr "Táto rezervácia sa nedá zrušiť" + +msgid "Booking does not exist or was already undone" +msgstr "Rezervácia neexistuje alebo už bola zrušená" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "Naozaj si prajete vymazať API kľúč \"%s\"?" + +msgid "Add note" +msgstr "Pridať poznámku" + +msgid "Add note to %s" +msgstr "Pridať poznámku k %s" + +msgid "per day" +msgstr "na deň" + +msgid "Compact view" +msgstr "Kompaktné zobrazenie" + +msgid "Normal view" +msgstr "Normálne zobrazenie" + +msgid "Only undone items" +msgstr "Iba zrušené položky" + +msgid "Add product" +msgstr "Pridať výrobok" + +msgid "Add product to %s" +msgstr "Pridať výrobok k %s" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" +"Spotrebovať všetky ingrediencie potrebné pre recepty a výrobky na tento " +"týždeň" + +msgid "Meal plan recipe" +msgstr "Recept pre jedálniček" + +msgid "Meal plan note" +msgstr "Poznámka pre jedálniček" + +msgid "Meal plan product" +msgstr "Výrobok pre jedálniček" + +msgid "Scan mode" +msgstr "Režim skenovania" + +msgid "on" +msgstr "zap" + +msgid "off" +msgstr "vyp" + +msgid "" +"Scan mode is on but not all required fields could be populated automatically" +msgstr "" +"Režim skenovania je zapnutý, ale nepodarilo sa automaticky vyplniť všetky " +"polia+" + +msgid "Is freezer" +msgstr "Je mraznička" + +msgid "" +"When moving products from/to a freezer location, the products best before " +"date is automatically adjusted according to the product settings" +msgstr "" + +msgid "" +"On moving this product to a freezer location (so when freezing it), the best" +" before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after freezing" +msgstr "Predvolený dátum spotreby pri zamrazení" + +msgid "" +"On moving this product from a freezer location (so when thawing it), the " +"best before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after thawing" +msgstr "Predvolený dátum spotreby po rozmrazení" + +msgid "This cannot be the same as the \"From\" location" +msgstr "Toto nemôže byť rovnaké ako umiestnenie \"Od\"" + +msgid "Thawed" +msgstr "Rozmrazené" + +msgid "Frozen" +msgstr "Zmrazené" + +msgid "Are you sure to delete userentity \"%s\"?" +msgstr "Naozaj si prajete odstrániť používateľskú entitu \"%s\"?" diff --git a/localization/sk_SK/userfield_types.po b/localization/sk_SK/userfield_types.po new file mode 100644 index 00000000..37fc93c7 --- /dev/null +++ b/localization/sk_SK/userfield_types.po @@ -0,0 +1,47 @@ +# Translators: +# Jose Riha , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" +"PO-Revision-Date: 2019-05-01 17:43+0000\n" +"Last-Translator: Jose Riha , 2020\n" +"Language-Team: Slovak (Slovakia) (https://www.transifex.com/grocy/teams/93189/sk_SK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk_SK\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" +"X-Domain: grocy/userfield_types\n" + +msgid "text-single-line" +msgstr "text-jeden-riadok" + +msgid "text-multi-line" +msgstr "text-viac-riadkov" + +msgid "number-integral" +msgstr "číslo-celé" + +msgid "number-decimal" +msgstr "číslo-desatinné" + +msgid "date" +msgstr "dátum" + +msgid "datetime" +msgstr "dátum a čas" + +msgid "checkbox" +msgstr "zaškrtávacie políčko" + +msgid "preset-list" +msgstr "voľby-zoznam" + +msgid "preset-checklist" +msgstr "voľby-zaškrtávací-zoznam" + +msgid "link" +msgstr "odkaz" diff --git a/localization/stock_transaction_types.pot b/localization/stock_transaction_types.pot index 48930d28..09f11fba 100644 --- a/localization/stock_transaction_types.pot +++ b/localization/stock_transaction_types.pot @@ -35,3 +35,6 @@ msgstr "" msgid "stock-edit-new" msgstr "" + +msgid "self-production" +msgstr "" diff --git a/localization/strings.pot b/localization/strings.pot index f77077e4..07a6e805 100644 --- a/localization/strings.pot +++ b/localization/strings.pot @@ -917,7 +917,7 @@ msgstr "" msgid "Mark %1$s of %2$s as open" msgstr "" -msgid "When a product was marked as opened, the best before date will be replaced by today + this amount of days (a value of 0 disables this)" +msgid "When this product was marked as opened, the best before date will be replaced by today + this amount of days (a value of 0 disables this)" msgstr "" msgid "Default best before days after opened" @@ -1234,7 +1234,7 @@ msgstr "" msgid "Meal plan" msgstr "" -msgid "Add recipe to %s" +msgid "Add recipe on %s" msgstr "" msgid "%s serving" @@ -1606,3 +1606,141 @@ msgstr "" msgid "Edit stock entry" msgstr "" + +msgid "Camera access is on only possible when supported and allowed by your browser and when grocy is served via a secure (https://) connection" +msgstr "" + +msgid "Keep screen on" +msgstr "" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "" + +msgid "A purchased date is required" +msgstr "" + +msgid "When a product is selected, one unit (per serving in purchase quantity unit) will be added to stock on consuming this recipe" +msgstr "" + +msgid "Produces product" +msgstr "" + +msgid "This booking cannot be undone" +msgstr "" + +msgid "Booking does not exist or was already undone" +msgstr "" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "" + +msgid "Add note" +msgstr "" + +msgid "Add note on %s" +msgstr "" + +msgid "per day" +msgstr "" + +msgid "Compact view" +msgstr "" + +msgid "Normal view" +msgstr "" + +msgid "Only undone items" +msgstr "" + +msgid "Add product" +msgstr "" + +msgid "Add product on %s" +msgstr "" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" + +msgid "Meal plan recipe" +msgstr "" + +msgid "Meal plan note" +msgstr "" + +msgid "Meal plan product" +msgstr "" + +msgid "Scan mode" +msgstr "" + +msgid "on" +msgstr "" + +msgid "off" +msgstr "" + +msgid "Scan mode is on but not all required fields could be populated automatically" +msgstr "" + +msgid "Is freezer" +msgstr "" + +msgid "When moving products from/to a freezer location, the products best before date is automatically adjusted according to the product settings" +msgstr "" + +msgid "On moving this product to a freezer location (so when freezing it), the best before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after freezing" +msgstr "" + +msgid "On moving this product from a freezer location (so when thawing it), the best before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after thawing" +msgstr "" + +msgid "This cannot be the same as the \"From\" location" +msgstr "" + +msgid "Thawed" +msgstr "" + +msgid "Frozen" +msgstr "" + +msgid "Are you sure to delete userentity \"%s\"?" +msgstr "" + +msgid "Shopping list settings" +msgstr "" + +msgid "Show a month-view calendar" +msgstr "" + +msgid "Don't automatically switch to the compact view on mobile devices" +msgstr "" + +msgid "Edit note on %s" +msgstr "" + +msgid "Edit product on %s" +msgstr "" + +msgid "Edit recipe on %s" +msgstr "" + +msgid "Desired servings" +msgstr "" + +msgid "Base: %s" +msgstr "" + +msgid "Recipes settings" +msgstr "" + +msgid "Recipe card" +msgstr "" + +msgid "Group ingredients by their product group" +msgstr "" diff --git a/localization/sv_SE/chore_assignment_types.po b/localization/sv_SE/chore_assignment_types.po index 0751501a..10ad87b6 100644 --- a/localization/sv_SE/chore_assignment_types.po +++ b/localization/sv_SE/chore_assignment_types.po @@ -1,3 +1,6 @@ +# Translators: +# Benjamin Tayehanpour , 2019 +# Peter Wickenberg , 2019 # msgid "" msgstr "" @@ -5,6 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-09-17 10:45+0000\n" +"Last-Translator: Peter Wickenberg , 2019\n" "Language-Team: Swedish (Sweden) (https://www.transifex.com/grocy/teams/93189/sv_SE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -14,13 +18,13 @@ msgstr "" "X-Domain: grocy/chore_assignment_types\n" msgid "no-assignment" -msgstr "" +msgstr "Ingen uppgift" msgid "who-least-did-first" -msgstr "" +msgstr "Den som gjorde minst går först" msgid "random" -msgstr "" +msgstr "Slumpmässig" msgid "in-alphabetical-order" -msgstr "" +msgstr "I alfabetisk ordning" diff --git a/localization/sv_SE/chore_period_types.po b/localization/sv_SE/chore_period_types.po index 4881e672..424ffa67 100644 --- a/localization/sv_SE/chore_period_types.po +++ b/localization/sv_SE/chore_period_types.po @@ -1,5 +1,6 @@ # Translators: # Bernd Bestel , 2019 +# Peter Wickenberg , 2019 # msgid "" msgstr "" @@ -7,7 +8,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Bernd Bestel , 2019\n" +"Last-Translator: Peter Wickenberg , 2019\n" "Language-Team: Swedish (Sweden) (https://www.transifex.com/grocy/teams/93189/sv_SE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,3 +31,6 @@ msgstr "Veckovis" msgid "monthly" msgstr "Månadsvis" + +msgid "yearly" +msgstr "Årligen" diff --git a/localization/sv_SE/demo_data.po b/localization/sv_SE/demo_data.po index 66e4f9bd..f3c86d80 100644 --- a/localization/sv_SE/demo_data.po +++ b/localization/sv_SE/demo_data.po @@ -2,6 +2,7 @@ # Mathias Fröjd , 2019 # Bernd Bestel , 2019 # Fredrik Hendeberg , 2019 +# Peter Wickenberg , 2019 # msgid "" msgstr "" @@ -9,7 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Fredrik Hendeberg , 2019\n" +"Last-Translator: Peter Wickenberg , 2019\n" "Language-Team: Swedish (Sweden) (https://www.transifex.com/grocy/teams/93189/sv_SE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -162,9 +163,6 @@ msgstr "Tysk" msgid "Italian" msgstr "Italienska" -msgid "Demo in different language" -msgstr "Demo på olika språk" - msgid "This is the note content of the recipe ingredient" msgstr "Detta är anteckningsinnehållet i receptens ingrediens" @@ -285,27 +283,66 @@ msgid "Polish" msgstr "Polska" msgid "Milk Chocolate" -msgstr "" +msgstr "Mjölkchoklad" msgid "Dark Chocolate" -msgstr "" +msgstr "Mörk chocklad" msgid "Slice" msgid_plural "Slices" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Skiva" +msgstr[1] "Skivor" msgid "Example userentity" -msgstr "" +msgstr "Exempel användarenhet" msgid "This is an example user entity..." -msgstr "" +msgstr "Detta är ett exempel på en användarenhet..." msgid "Custom field" -msgstr "" +msgstr "Anpassat fält" msgid "Example field value..." -msgstr "" +msgstr "Anpassat fält värde..." msgid "Waffle rolls" +msgstr "Våffelrullar" + +msgid "Danish" +msgstr "Danska" + +msgid "Dutch" +msgstr "Hollänska" + +msgid "Norwegian" +msgstr "Norska" + +msgid "Demo" +msgstr "Demo" + +msgid "Stable version" +msgstr "Stabil version" + +msgid "Preview version" +msgstr "Förhandsgrandskningsversion" + +msgid "current release" +msgstr "Aktuell version" + +msgid "not yet released" +msgstr "osläppt version" + +msgid "Portuguese (Brazil)" +msgstr "Portugisiska (Brasilien)" + +msgid "This is a note" +msgstr "" + +msgid "Freezer" +msgstr "" + +msgid "Hungarian" +msgstr "" + +msgid "Slovak" msgstr "" diff --git a/localization/sv_SE/strings.po b/localization/sv_SE/strings.po index 59462e64..4fd83c18 100644 --- a/localization/sv_SE/strings.po +++ b/localization/sv_SE/strings.po @@ -1,6 +1,9 @@ # Translators: -# Mathias Fröjd , 2019 # Bernd Bestel , 2019 +# Mathias Fröjd , 2019 +# Jimmy Hawkin , 2019 +# Fredrik Hendeberg , 2019 +# Jesper Sandström , 2019 # msgid "" msgstr "" @@ -8,7 +11,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:42+0000\n" -"Last-Translator: Bernd Bestel , 2019\n" +"Last-Translator: Jesper Sandström , 2019\n" "Language-Team: Swedish (Sweden) (https://www.transifex.com/grocy/teams/93189/sv_SE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,37 +25,37 @@ msgstr "Lageröversikt" msgid "%s product expires" msgid_plural "%s products expiring" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s produkt går ut" +msgstr[1] "%s produkter går ut" msgid "within the next day" msgid_plural "within the next %s days" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "inom en dag" +msgstr[1] "inom %s dagar" msgid "%s product is already expired" msgid_plural "%s products are already expired" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s produkt har redan gått ut" +msgstr[1] "%s produkter har redan gått ut" msgid "%s product is below defined min. stock amount" msgid_plural "%s products are below defined min. stock amount" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s produkt är under beställningspunkten" +msgstr[1] "%s produkter är under den valda gränsen för minsta lagerantal" msgid "Product" msgstr "Produkt" msgid "%s Product" msgid_plural "%s Products" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s Produkt" +msgstr[1] "%s produkter" msgid "Amount" msgstr "Belopp" msgid "Next best before date" -msgstr "Nästa bäst före datumet" +msgstr "Nästa bäst-före-datum" msgid "Logout" msgstr "Logga ut" @@ -67,7 +70,7 @@ msgid "Purchase" msgstr "Inköp" msgid "Consume" -msgstr "Konsumera" +msgstr "Förbruka" msgid "Inventory" msgstr "Lager" @@ -76,10 +79,10 @@ msgid "Shopping list" msgstr "Inköpslista" msgid "Chore tracking" -msgstr "Sysslor spårning" +msgstr "Spårning av sysslor" msgid "Battery tracking" -msgstr "Batterispårning" +msgstr "Spårning av batterier" msgid "Locations" msgstr "Platser" @@ -97,10 +100,10 @@ msgid "Chore" msgstr "Syssla" msgid "Next estimated tracking" -msgstr "Nästa beräknad spårning" +msgstr "Nästa beräknade spårning" msgid "Last tracked" -msgstr "Senast spåras" +msgstr "Senast spårad" msgid "Battery" msgstr "Batteri" @@ -115,16 +118,16 @@ msgid "Best before" msgstr "Bäst före" msgid "OK" -msgstr "ok" +msgstr "OK" msgid "Product overview" msgstr "Produktöversikt" msgid "Stock quantity unit" -msgstr "Lager kvantitet enhet" +msgstr "Mängdenhet för lager" msgid "Stock amount" -msgstr "Lagerbelopp" +msgstr "Lagerantal" msgid "Last purchased" msgstr "Senast köpt" @@ -133,43 +136,43 @@ msgid "Last used" msgstr "Senast använd" msgid "Spoiled" -msgstr "Skämd" +msgstr "Utgången" msgid "Barcode lookup is disabled" -msgstr "Streckkodsuppslag är inaktiverad" +msgstr "Streckkodsuppslagning är inaktiverad" msgid "" "will be added to the list of barcodes for the selected product on submit" msgstr "" -"kommer att läggas till i listan över streckkoder för den valda produkten vid" -" inlämning" +"kommer att läggas till i listan över streckkoder för den valda produkten när" +" du trycker 'skicka'" msgid "New amount" -msgstr "Nytt belopp" +msgstr "Nytt antal" msgid "Note" -msgstr "Anteckna" +msgstr "Anteckning" msgid "Tracked time" msgstr "Spårad tid" msgid "Chore overview" -msgstr "Syssla översikt" +msgstr "Översikt över syssla" msgid "Tracked count" -msgstr "Spårräkning" +msgstr "Antal spårningar" msgid "Battery overview" msgstr "Batteriöversikt" msgid "Charge cycles count" -msgstr "Laddningscykler räknas" +msgstr "Antal laddcykler" msgid "Create shopping list item" -msgstr "Skapa köpobjekt" +msgstr "Skapa artikel på inköpslista" msgid "Edit shopping list item" -msgstr "Redigera inköpslista" +msgstr "Redigera artikel på inköpslista" msgid "Save" msgstr "Spara" @@ -184,16 +187,16 @@ msgid "Location" msgstr "Plats" msgid "Min. stock amount" -msgstr "Min. lagerbelopp" +msgstr "Minsta lagerantal" msgid "QU purchase" -msgstr "QU köp" +msgstr "Mängdenhet köp" msgid "QU stock" -msgstr "QU lager" +msgstr "Mängdenhet lager" msgid "QU factor" -msgstr "QU-faktor" +msgstr "Faktor för mängdenhet" msgid "Description" msgstr "Beskrivning" @@ -208,28 +211,28 @@ msgid "Minimum stock amount" msgstr "Minsta beståndsbelopp" msgid "Default best before days" -msgstr "Standard bäst före dagar" +msgstr "Standardantal bäst-före-dagar" msgid "Quantity unit purchase" -msgstr "Kvantitetsenhetsköp" +msgstr "Mängdenhet inköp" msgid "Quantity unit stock" msgstr "Kvantitetsenhet lager" msgid "Factor purchase to stock quantity unit" -msgstr "Faktorköp till lager kvantitet enhet" +msgstr "Faktorera mängdenhet för inköp mot mängdenhet för lager" msgid "Create location" msgstr "Skapa plats" msgid "Create quantity unit" -msgstr "Skapa kvantitetsenhet" +msgstr "Skapa mängdenhet" msgid "Period type" msgstr "Periodstyp" msgid "Period days" -msgstr "Period dagar" +msgstr "Antal dagar i perioden" msgid "Create chore" msgstr "Skapa syssla" @@ -247,7 +250,7 @@ msgid "Edit chore" msgstr "Redigera syssla" msgid "Edit quantity unit" -msgstr "Redigera kvantitetsenhet" +msgstr "Redigera mängdenhet" msgid "Edit product" msgstr "Redigera produkt" @@ -259,7 +262,7 @@ msgid "Record data" msgstr "Spara data" msgid "Manage master data" -msgstr "Hantera data" +msgstr "Hantera övergripande data" msgid "This will apply to added products" msgstr "Detta gäller för tillagda produkter" @@ -268,7 +271,7 @@ msgid "never" msgstr "aldrig" msgid "Add products that are below defined min. stock amount" -msgstr "Lägg till produkter som är under definierade min. lagerbelopp" +msgstr "Lägg till produkter som är under det angivna minsta lagerantalet" msgid "" "For purchases this amount of days will be added to today for the best before" @@ -277,8 +280,9 @@ msgstr "" "För inköp kommer denna mängd dagar att läggas till idag för det bästa före " "datumförslaget" -msgid "This means 1 %s purchased will be converted into %s %s in stock" -msgstr "Det betyder att 1 %s köpt kommer att konverteras till %s %s i lager" +msgid "This means 1 %1$s purchased will be converted into %2$s %3$s in stock" +msgstr "" +"Detta betyder at 1 %1$s köpta kommer att konverteras till %2$s %3$s i lager" msgid "Login" msgstr "Logga in" @@ -302,16 +306,16 @@ msgid "No" msgstr "Nej" msgid "Are you sure to delete chore \"%s\"?" -msgstr "Är du säker på att ta bort syssla \"%s\"?" +msgstr "Är du säker på att radera sysslan \"%s\"?" msgid "\"%s\" could not be resolved to a product, how do you want to proceed?" msgstr "\"%s\" kunde inte hittas som produkt, hur vill du fortsätta?" msgid "Create or assign product" -msgstr "Skapa eller tilldel produkt" +msgstr "Skapa eller tilldela produkt" msgid "Cancel" -msgstr "Annullera" +msgstr "Avbryt" msgid "Add as new product" msgstr "Lägg till som ny produkt" @@ -323,19 +327,19 @@ msgid "Add as new product and prefill barcode" msgstr "Lägg till som ny produkt och fyll i streckkoden" msgid "Are you sure to delete quantity unit \"%s\"?" -msgstr "Är du säker på att radera kvantitetsenheten \"%s\"?" +msgstr "Är du säker på att radera mängdenheten \"%s\"?" msgid "Are you sure to delete product \"%s\"?" -msgstr "Är du säker på att ta bort produkten \"%s\"?" +msgstr "Är du säker på att du vill radera produkten \"%s\"?" msgid "Are you sure to delete location \"%s\"?" -msgstr "Är du säker på att radera platsen \"%s\"?" +msgstr "Är du säker på att du vill radera platsen \"%s\"?" msgid "Manage API keys" msgstr "Hantera API-nycklar" msgid "REST API & data model documentation" -msgstr "REST API och datamodell dokumentation" +msgstr "REST API och dokumentation för datamodell" msgid "API keys" msgstr "API-nycklar" @@ -347,7 +351,7 @@ msgid "API key" msgstr "API-nyckel" msgid "Expires" -msgstr "Utgår" +msgstr "Löper ut" msgid "Created" msgstr "Skapad" @@ -362,47 +366,44 @@ msgid "This means %s will be removed from stock" msgstr "Detta betyder att %s kommer att tas bort från lager" msgid "" -"This means it is estimated that a new execution of this chore is tracked %s " -"days after the last was tracked" +"This means the next execution of this chore is scheduled %s days after the " +"last execution" msgstr "" -"Det betyder att det uppskattas att en ny exekvering av denna syssla spåras " -"%s dagar efter det att den sista spåras" +"Det innebär att nästa utförande av denna syssla schemaläggs 1%s dagar efter " +"att den senast utförts" -msgid "Removed %s %s of %s from stock" -msgstr "Ta bort %s %s av %s från lager" +msgid "Removed %1$s of %2$s from stock" +msgstr "Tog bort %1$s %2$s från lagret" msgid "About grocy" msgstr "Om grocy" msgid "Close" -msgstr "Stänga" +msgstr "Stäng" msgid "Released on" -msgstr "Släppt på" +msgstr "Utgiven" -msgid "Consume %s %s of %s" -msgstr "Konsumera %s %s av %s" +msgid "Added %1$s of %2$s to stock" +msgstr "Lade till %1$s %2$s till lagret" -msgid "Added %s %s of %s to stock" -msgstr "Tillagt %s %s av %s till lager" +msgid "Stock amount of %1$s is now %2$s" +msgstr "Mängden %1$s i lager är nu %2$s" -msgid "Stock amount of %s is now %s %s" -msgstr "Lager mängd av %s är nu %s %s" +msgid "Tracked execution of chore %1$s on %2$s" +msgstr "Spårat utförandet av syssla %1$s den %2$s" -msgid "Tracked execution of chore %s on %s" -msgstr "Spårat utförande av syssla %s på %s" - -msgid "Tracked charge cycle of battery %s on %s" -msgstr "Spårad laddningscykel för batteriet %s på %s" +msgid "Tracked charge cycle of battery %1$s on %2$s" +msgstr "Spårade laddningscykeln för batteri %1$s den %2$s" msgid "Consume all %s which are currently in stock" -msgstr "Konsumera alla %s som för närvarande finns i lager" +msgstr "Förbruka alla %s som för närvarande finns i lager" msgid "All" -msgstr "Allt" +msgstr "Alla" msgid "Track charge cycle of battery %s" -msgstr "Spårningscykel för batteriet %s" +msgstr "Spåra laddningscykel för batteriet %s" msgid "Track execution of chore %s" msgstr "Spåra utförandet av syssla %s" @@ -438,19 +439,19 @@ msgid "This cannot be negative" msgstr "Detta kan inte vara negativt" msgid "A quantity unit is required" -msgstr "En kvantitetsenhet krävs" +msgstr "En mängdenhet krävs" msgid "A period type is required" msgstr "En periodstyp krävs" msgid "A best before date is required" -msgstr "Ett bäst före datum krävs" +msgstr "Ett bäst-före-datum krävs" msgid "Settings" msgstr "inställningar" msgid "This can only be before now" -msgstr "Detta kan bara vara för nu" +msgstr "Detta kan bara vara en tidpunkt tidigare än just nu" msgid "Calendar" msgstr "Kalender" @@ -465,31 +466,31 @@ msgid "New recipe" msgstr "Nytt recept" msgid "Ingredients list" -msgstr "Ingredienser lista" +msgstr "Ingredienslista" msgid "Add recipe ingredient" -msgstr "Lägg till recept ingrediens" +msgstr "Lägg till receptingrediens" msgid "Edit recipe ingredient" -msgstr "Redigera recept ingrediens" +msgstr "Redigera receptingrediens" msgid "Are you sure to delete recipe \"%s\"?" -msgstr "Är du säker på att radera receptet \"%s\"?" +msgstr "Är du säker på att du vill radera receptet \"%s\"?" msgid "Are you sure to delete recipe ingredient \"%s\"?" -msgstr "Är du säker på att radera recept ingrediens \"%s\"?" +msgstr "Är du säker på att du vill radera receptingrediensen \"%s\"?" msgid "Are you sure to empty shopping list \"%s\"?" -msgstr "Är du säker på att tömma shoppinglistan \"%s\"?" +msgstr "Är du säker på att du vill tömma inköpslistan \"%s\"?" msgid "Clear list" -msgstr "Tydlig lista" +msgstr "Töm lista" msgid "Requirements fulfilled" msgstr "Krav uppfyllda" msgid "Put missing products on shopping list" -msgstr "Sätt saknade produkter på inköpslista" +msgstr "Sätt saknade produkter i inköpslista" msgid "Enough in stock" msgstr "Tillräckligt i lager" @@ -499,7 +500,11 @@ msgid "" msgid_plural "" "Not enough in stock, %s ingredients missing but already on the shopping list" msgstr[0] "" +"Inte tillräckligt mycket i lager, %s ingrediens saknas men finns redan på " +"inköpslistan" msgstr[1] "" +"Inte tillräckligt mycket i lager, %s ingredienser saknas men finns redan i " +"inköpslistan" msgid "Expand to fullscreen" msgstr "Expandera till fullskärm" @@ -513,14 +518,16 @@ msgstr "Förberedelse" msgid "Recipe" msgstr "Recept" -msgid "Not enough in stock, %s missing, %s already on shopping list" -msgstr "Inte tillräckligt i lager, %s saknas, %s redan på inköpslista" +msgid "Not enough in stock, %1$s missing, %2$s already on shopping list" +msgstr "" +"Inte tillräckligt mycket i lager, %1$s saknas, %2$s finns redan på " +"inköpslistan" msgid "Show notes" msgstr "Visa anteckningar" msgid "Put missing amount on shopping list" -msgstr "Ange saknas belopp på inköpslista" +msgstr "Lägg till saknat antal i inköpslistan" msgid "" "Are you sure to put all missing ingredients for recipe \"%s\" on the " @@ -612,28 +619,28 @@ msgstr "Enhet" msgid "%s Unit" msgid_plural "%s Units" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s Enhet" +msgstr[1] "%s Enheter" msgid "%s chore is due to be done" msgid_plural "%s chores are due to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s syssla att utföra" +msgstr[1] "%s sysslor att utföra" msgid "%s chore is overdue to be done" msgid_plural "%s chores are overdue to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s syssla är försenad" +msgstr[1] "%s sysslor är försenade" msgid "%s battery is due to be charged" msgid_plural "%s batteries are due to be charged" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s batteri behöver laddas" +msgstr[1] "%sbatterier behöver laddas" msgid "%s battery is overdue to be charged" msgid_plural "%s batteries are overdue to be charged" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s batteri borde redan ha laddats" +msgstr[1] "%s batterier borde redan ha laddats" msgid "in singular form" msgstr "i singular form" @@ -721,13 +728,13 @@ msgstr "Är du säker på att ta bort uppgift \"%s\"?" msgid "%s task is due to be done" msgid_plural "%s tasks are due to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s uppgift skall utföras" +msgstr[1] "%s uppgifter skall utföras" msgid "%s task is overdue to be done" msgid_plural "%s tasks are overdue to be done" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s uppgift är försenad" +msgstr[1] "%s uppgifter är försenade" msgid "Edit task category" msgstr "Redigera uppgiftskategori" @@ -946,11 +953,11 @@ msgstr "Inaktivera kontroll av lageruppfyllelse för denna ingrediens" msgid "Add all list items to stock" msgstr "Lägg till alla listobjekt på lager" -msgid "Add %s %s of %s to stock" -msgstr "Lägg till %s %s av %s i lager" +msgid "Add %1$s of %2$s to stock" +msgstr "Lägg till %1$s av %2$s till lagret" -msgid "Adding shopping list item %s of %s" -msgstr "Lägger till inköpslista nr 1 av %s" +msgid "Adding shopping list item %1$s of %2$s" +msgstr "Lägger till %1$s av %2$s på inköpslistan" msgid "Use a specific stock item" msgstr "Använd ett specifikt lagerobjekt" @@ -962,28 +969,23 @@ msgstr "" "Det första objektet i den här listan skulle plockas av standardregeln som är" " \"Första utgången först, sedan först i första utgåvan\"" -msgid "Mark %s of %s as open" -msgstr "" +msgid "Mark %1$s of %2$s as open" +msgstr "Markera %1$s av %2$s som öppna" msgid "" -"When a product was marked as opened, the best before date will be replaced " -"by today + this amount of days (a value of 0 disables this)" +"When this product was marked as opened, the best before date will be " +"replaced by today + this amount of days (a value of 0 disables this)" msgstr "" -"När en produkt markerades som öppnad, kommer det bästa före datumet att " -"ersättas med idag + detta antal dagar (ett värde av 0 avaktiverar detta)" msgid "Default best before days after opened" msgstr "Standard bäst före dagar efter öppnandet" -msgid "Marked %s %s of %s as opened" -msgstr "Markerad %s %s av %s som öppnad" +msgid "Marked %1$s of %2$s as opened" +msgstr "Markerat %1$s av %2$s som öppna" msgid "Mark as opened" msgstr "Markera som öppnat" -msgid "Expires on %s; Bought on %s" -msgstr "Förfaller %s; Köpt den %s" - msgid "Not opened" msgstr "Ej öppnad" @@ -1025,7 +1027,7 @@ msgid "Skip" msgstr "Hoppa över" msgid "Servings" -msgstr "Serveringar" +msgstr "Portioner" msgid "Costs" msgstr "Kostar" @@ -1137,8 +1139,8 @@ msgstr "System information" msgid "Changelog" msgstr "Ändringslogg" -msgid "will be multiplied a factor of %s to get %s" -msgstr "kommer att multipliceras med en faktor %s för att få %s" +msgid "will be multiplied a factor of %1$s to get %2$s" +msgstr "kommer att multipliceras med en faktor av %1$s för att få %2$s" msgid "The given date is earlier than today, are you sure?" msgstr "Det angivna datumet är tidigare än idag, är du säker?" @@ -1197,8 +1199,8 @@ msgstr "Visa mer" msgid "Show less" msgstr "Visa mindre" -msgid "The amount must be between %s and %s" -msgstr "Beloppet måste vara mellan %s och %s" +msgid "The amount must be between %1$s and %2$s" +msgstr "Beloppet måste vara mellan %1$s och %2$s" msgid "Day of month" msgstr "Dag i månad" @@ -1264,42 +1266,616 @@ msgid "Edit userfield" msgstr "Edit userfield" msgid "Plural forms" -msgstr "" +msgstr "Pluralformer" msgid "One plural form per line, the current language requires" -msgstr "" +msgstr "En pluralform per rad, språket behöver" msgid "Plural count" -msgstr "" +msgstr "Flertal" msgid "Plural rule" -msgstr "" +msgstr "Plural regel" msgid "in plural form" msgstr "i plural form" msgid "Not enough in stock, %s ingredient missing" msgid_plural "Not enough in stock, %s ingredients missing" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Inte tillräckligt i lager, %s ingrediens saknas" +msgstr[1] "Inte tillräckligt i lager, %s ingredienser saknas" -msgid "Consume %s of %s" -msgstr "" - -msgid "The amount cannot be lower than %s or equal %s" -msgstr "" +msgid "The amount cannot be lower than %1$s or equal %2$s" +msgstr "Mängden kan inte vara längre än %1$s eller lika med %2$s" msgid "Not enough in stock, but already on the shopping list" -msgstr "" +msgstr "Inte tillräckligt i lager, men redan på inköpslistan" msgid "Not enough in stock" -msgstr "" +msgstr "Inte tillräckligt i lager" msgid "Expiring soon days" -msgstr "" +msgstr "Utgår snart dagar" + +msgid "Default location" +msgstr "Standardplats" msgid "Default amount for purchase" -msgstr "" +msgstr "Standardbelopp för köp" msgid "Default amount for consume" +msgstr "Standardbelopp för konsumtion" + +msgid "Variable amount" +msgstr "Variabelt belopp" + +msgid "" +"When this is not empty, it will be shown instead of the amount entered above" +" while the amount there will still be used for stock fulfillment checking" +msgstr "" +"När detta inte är tomt kommer det att visas istället för det angivna " +"beloppet medan beloppet där fortfarande kommer att användas för att " +"kontrollera lager" + +msgid "Track date only" +msgstr "Spåra endast datum" + +msgid "When enabled only the day of an execution is tracked, not the time" +msgstr "När det är aktiverat spåras bara dagen för en körning, inte tiden" + +msgid "Consume %1$s of %2$s" +msgstr "Konsumerat%1$sav%2$s" + +msgid "Meal plan" +msgstr "Måltidsplan" + +msgid "Add recipe to %s" +msgstr "Lägg till recept till" + +msgid "%s serving" +msgid_plural "%s servings" +msgstr[0] "%s portion" +msgstr[1] "%s portioner" + +msgid "Week costs" +msgstr "Veckokostnader" + +msgid "Configuration" +msgstr "Konfiguration" + +msgid "A predefined list of values, one per line" +msgstr "En fördefinierad lista med värden, en per rad" + +msgid "Chores due soon days" +msgstr "Ärenden kommer snart dagar" + +msgid "Batteries due to be charged soon days" +msgstr "Batterier kommer att laddas snart dagar" + +msgid "Tasks due soon days" +msgstr "Uppgifter som kommer snart dagar" + +msgid "Products" +msgstr "Produkter" + +msgid "Marked task %s as completed on %s" +msgstr "Markerad uppgift%som avslutad den%s" + +msgid "Booking has subsequent dependent bookings, undo not possible" +msgstr "Bokning har efterföljande beroende bokningar, går inte att ångra" + +msgid "per serving" +msgstr "per portion" + +msgid "Never" +msgstr "Aldrig" + +msgid "Today" +msgstr "Idag" + +msgid "Consume %1$s of %2$s as spoiled" +msgstr "Konsumera%1$s av %2$s som förstört " + +msgid "Not all ingredients of recipe \"%s\" are in stock, nothing removed" +msgstr "Inte alla ingredienser i recept \"%s\" finns i lager, inget togs bort" + +msgid "Undo task \"%s\"" +msgstr "Ångra uppgiften \"%s\"" + +msgid "Due date rollover" +msgstr "Förfallodatumövergång" + +msgid "" +"When enabled the chore can never be overdue, the due date will shift forward" +" each day when due" +msgstr "" +"När det är aktiverat kan uppdraget aldrig förfalla, förfallodatumet " +"förflyttas framåt varje dag när det förfaller" + +msgid "Location Content Sheet" +msgstr "Platsinnehållsblad" + +msgid "Print" +msgstr "Skriv ut" + +msgid "all locations" +msgstr "Alla positioner" + +msgid "" +"Here you can print a page per location with the current stock, maybe to hang" +" it there and note the consumed things on it." +msgstr "" +"Här kan du skriva ut en sida per plats med det aktuella lagret, kanske för " +"att hänga den där och notera de förbrukade sakerna på den." + +msgid "this location" +msgstr "Denna position" + +msgid "Consumend amount" +msgstr "Förbrukat antal" + +msgid "Time of printing" +msgstr "Tid för utskrift" + +msgid "Are you sure to delete equipment \"%s\"?" +msgstr "Är du säker på att radera utrustningen \"%s\"?" + +msgid "Parent product" +msgstr "Överordnad produkt" + +msgid "" +"Not possible because this product is already used as a parent product in " +"another product" +msgstr "" +"Inte möjligt då denna produkt redan används som överordnad produkt för en " +"annan produkt" + +msgid "Default conversions" +msgstr "Standardkonverteringar" + +msgid "Factor" +msgstr "Faktor" + +msgid "1 %s is the same as..." +msgstr "1 %s är detsamma som..." + +msgid "Create QU conversion" +msgstr "Skapa konvertering för mängdenhet" + +msgid "Default for QU" +msgstr "Standard för mängdenhet" + +msgid "Quantity unit from" +msgstr "Från mängdenhet" + +msgid "Quantity unit to" +msgstr "Till mängdenhet" + +msgid "" +"This cannot be lower than %1$s and must be a valid number with max. %2$s " +"decimal places" +msgstr "" +"Detta kan inte vara mindre än %1$s och måste vara ettgiltigt tal med max " +"%2$s decimaler" + +msgid "This cannot be equal to %s" +msgstr "Detta kan inte vara lika med %s" + +msgid "This means 1 %1$s is the same as %2$s %3$s" +msgstr "Det innebär att 1 %1$s är detsamma som %2$s %3$s" + +msgid "QU conversions" +msgstr "Konverteringar mellan mängdenheter" + +msgid "Product overrides" +msgstr "Produkten har företräde framför" + +msgid "Override for product" +msgstr "Företräde för produkt" + +msgid "This equals %1$s %2$s in stock" +msgstr "Det motsvarar %1$s %2$s i lager" + +msgid "Edit QU conversion" +msgstr "Redigera konvertering för mängdenhet" + +msgid "An assignment type is required" +msgstr "En uppgiftstyp behövs" + +msgid "Assignment type" +msgstr "Uppgiftstyp" + +msgid "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution" +msgstr "" +"Det innebär att nästa utförande av denna syssla schemaläggs 1 dag efter att " +"den senast utförts" + +msgid "" +"This means the next execution of this chore is scheduled 1 day after the " +"last execution, but only for the weekdays selected below" +msgstr "" +"Det innebär att nästa utförande av denna syssla schemaläggs 1 dag efter att " +"den senast utförts, men endast på de nedan valda veckodagarna" + +msgid "This means the next execution of this chore is not scheduled" +msgstr "Det innebär att nästa utförande av denna syssla inte schemaläggs" + +msgid "" +"This means the next execution of this chore is scheduled on the below " +"selected day of each month" +msgstr "" +"Det innebär att nästa utförande av denna syssla schemaläggs på den nedan " +"valda dagen i varje månad" + +msgid "" +"This means the next execution of this chore will not be assigned to anyone" +msgstr "Det innebär att nästa utförande av denna syssla inte tilldelas någon" + +msgid "" +"This means the next execution of this chore will be assigned to the one who " +"executed it least" +msgstr "" +"Det innebär att nästa utförande av denna syssla tilldelas den som senast " +"utförde den" + +msgid "This means the next execution of this chore will be assigned randomly" +msgstr "" +"Det innebär att nästa utförande av denna syssla tilldelas slumpmässigt" + +msgid "" +"This means the next execution of this chore will be assigned to the next one" +" in alphabetical order" +msgstr "" +"Det innebär att nästa utförande av denna syssla tilldelas nästa person i " +"bokstavsordning" + +msgid "Assign to" +msgstr "Tilldela" + +msgid "This assignment type requires that at least one is assigned" +msgstr "Denna uppgiftstyp kräver åtminstone en tilldelning" + +msgid "%s chore is assigned to me" +msgid_plural "%s chores are assigned to me" +msgstr[0] "Jag har %s tilldelad syssla" +msgstr[1] "Jag har %s tilldelade sysslor" + +msgid "Assigned to me" +msgstr "Tilldelad till mig" + +msgid "assigned to %s" +msgstr "Tilldelad till %s" + +msgid "Filter by assignment" +msgstr "Filtrera på uppgift" + +msgid "Consume product on chore execution" +msgstr "Förbruka produkt när syssla utförs" + +msgid "Are you sure to delete user field \"%s\"?" +msgstr "Är du säker på att du vill radera användarfältet \"%s\"?" + +msgid "Userentities" +msgstr "Användarposter" + +msgid "Create userentity" +msgstr "Skapa användarpost" + +msgid "Show in sidebar menu" +msgstr "Visa i sidofältet" + +msgid "Edit userentity" +msgstr "Redigera användarpost" + +msgid "Edit %s" +msgstr "Redigera %s" + +msgid "Create %s" +msgstr "Skapa %s" + +msgid "Are you sure to delete this userobject?" +msgstr "Är du säker på att du vill radera detta användarobjekt?" + +msgid "Icon CSS class" +msgstr "CSS-klass för ikon" + +msgid "For example" +msgstr "Till exempel" + +msgid "Configure fields" +msgstr "Konfigurera fält" + +msgid "Quantity unit plural form testing" +msgstr "Test för pluralform av mängdenhet" + +msgid "Result" +msgstr "Resultat" + +msgid "Test plural forms" +msgstr "Testa pluralformer" + +msgid "Scan a barcode" +msgstr "Skanna streckkod" + +msgid "Error while initializing the barcode scanning library" +msgstr "Fel när programbiblioteket för streckkodsskanning skulle läsas in" + +msgid "" +"The resulting price of this ingredient will be multiplied by this factor" +msgstr "Priset för denna ingrediens kommer att multipliceras med denna faktor" + +msgid "Price factor" +msgstr "Prisfaktor" + +msgid "Do you find grocy useful?" +msgstr "Tycker du att grocy är användbart?" + +msgid "Say thanks" +msgstr "Tacka" + +msgid "Search for recipes containing this product" +msgstr "Sök efter recept innehållande denna produkt" + +msgid "Add to shopping list" +msgstr "Lägg till inköpslista" + +msgid "Added %1$s of %2$s to the shopping list \"%3$s\"" +msgstr "La till %1$s %2$s till inköpslistan \"%3$s\"" + +msgid "Output" +msgstr "Utdata" + +msgid "Energy (kcal)" +msgstr "Energi (kcal)" + +msgid "Per stock quantity unit" +msgstr "Per mängdenhet i lager" + +msgid "Barcode scanner testing" +msgstr "Test av streckkodsskanning" + +msgid "Expected barcode" +msgstr "Förväntad streckkod" + +msgid "Scan field" +msgstr "Skanningsfält" + +msgid "Scanned barcodes" +msgstr "Skannade streckkoder" + +msgid "Hit" +msgstr "Träff" + +msgid "Miss" +msgstr "Ej träff" + +msgid "Display recipe" +msgstr "Visa recept" + +msgid "Accumulate sub products min. stock amount" +msgstr "Ackumulera minsta lagersumma för underprodukt" + +msgid "" +"If enabled, the min. stock amount of sub products will be accumulated into " +"this product, means the sub product will never be \"missing\", only this " +"product" +msgstr "" +"Om detta är aktiverat kommer minsta lagerantal för underprodukter att " +"ackumuleras till denna produkt, vilket innebär att underprodukten aldrig " +"kommer saknas, endast denna överordnade produkt" + +msgid "Are you sure to remove this conversion?" +msgstr "Är du säker på att du vill radera denna konvertering?" + +msgid "Unit price" +msgstr "Enhetspris" + +msgid "Total price" +msgstr "Totalpris" + +msgid "in %s and based on the purchase quantity unit" +msgstr "i %s och baserat på mängdenhet för inköp" + +msgid "Unlimited" +msgstr "Obegränsat" + +msgid "Clear" +msgstr "Töm" + +msgid "Are you sure to remove the included recipe \"%s\"?" +msgstr "Är du säker på att du vill radera receptet \"%s\" som ingår?" + +msgid "Period interval" +msgstr "Periodintervall" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s days" +msgstr "" +"Det innebär att nästa utförande av denna syssla endast ska schemaläggas var " +"%s dag" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s weeks" +msgstr "" +"Det innebär att nästa utförande av denna syssla endast ska schemaläggas var " +"%s vecka" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s months" +msgstr "" +"Det innebär att nästa utförande av denna syssla endast ska schemaläggas var " +"%s månad" + +msgid "" +"This means the next execution of this chore is scheduled 1 year after the " +"last execution" +msgstr "" +"Det innebär att nästa utförande av denna syssla schemaläggs 1 år efter att " +"den senast utförts" + +msgid "" +"This means the next execution of this chore should only be scheduled every " +"%s years" +msgstr "" +"Det innebär att nästa utförande av denna syssla endast ska schemaläggas var " +"%s år" + +msgid "Transfer" +msgstr "" + +msgid "From location" +msgstr "" + +msgid "To location" +msgstr "" + +msgid "There are no units available at this location" +msgstr "" + +msgid "Amount: %1$s; Expires on %2$s; Bought on %3$s" +msgstr "" + +msgid "Transfered %1$s of %2$s from %3$s to %4$s" +msgstr "" + +msgid "Show stock entries" +msgstr "" + +msgid "Stock entries" +msgstr "" + +msgid "Best before date" +msgstr "" + +msgid "Purchased date" +msgstr "" + +msgid "Consume all %s for this stock entry" +msgstr "" + +msgid "The amount cannot be lower than %1$s" +msgstr "" + +msgid "Stock entry successfully updated" +msgstr "" + +msgid "Edit stock entry" +msgstr "" + +msgid "" +"Camera access is on only possible when supported and allowed by your browser" +" and when grocy is served via a secure (https://) connection" +msgstr "" + +msgid "Keep screen on" +msgstr "" + +msgid "Keep screen on while displaying a \"fullscreen-card\"" +msgstr "" + +msgid "A purchased date is required" +msgstr "" + +msgid "" +"When a product is selected, one unit (per serving in purchase quantity unit)" +" will be added to stock on consuming this recipe" +msgstr "" + +msgid "Produces product" +msgstr "" + +msgid "This booking cannot be undone" +msgstr "" + +msgid "Booking does not exist or was already undone" +msgstr "" + +msgid "Are you sure to delete API key \"%s\"?" +msgstr "" + +msgid "Add note" +msgstr "" + +msgid "Add note to %s" +msgstr "" + +msgid "per day" +msgstr "" + +msgid "Compact view" +msgstr "" + +msgid "Normal view" +msgstr "" + +msgid "Only undone items" +msgstr "" + +msgid "Add product" +msgstr "" + +msgid "Add product to %s" +msgstr "" + +msgid "Consume all ingredients needed by this weeks recipes or products" +msgstr "" + +msgid "Meal plan recipe" +msgstr "" + +msgid "Meal plan note" +msgstr "" + +msgid "Meal plan product" +msgstr "" + +msgid "Scan mode" +msgstr "" + +msgid "on" +msgstr "" + +msgid "off" +msgstr "" + +msgid "" +"Scan mode is on but not all required fields could be populated automatically" +msgstr "" + +msgid "Is freezer" +msgstr "" + +msgid "" +"When moving products from/to a freezer location, the products best before " +"date is automatically adjusted according to the product settings" +msgstr "" + +msgid "" +"On moving this product to a freezer location (so when freezing it), the best" +" before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after freezing" +msgstr "" + +msgid "" +"On moving this product from a freezer location (so when thawing it), the " +"best before date will be replaced by today + this amount of days" +msgstr "" + +msgid "Default best before days after thawing" +msgstr "" + +msgid "This cannot be the same as the \"From\" location" +msgstr "" + +msgid "Thawed" +msgstr "" + +msgid "Frozen" msgstr "" diff --git a/localization/sv_SE/userfield_types.po b/localization/sv_SE/userfield_types.po index 1bf60391..c556b4ef 100644 --- a/localization/sv_SE/userfield_types.po +++ b/localization/sv_SE/userfield_types.po @@ -1,5 +1,8 @@ # Translators: # Bernd Bestel , 2019 +# Fredrik Hendeberg , 2019 +# Jesper Sandström , 2019 +# Peter Wickenberg , 2019 # msgid "" msgstr "" @@ -7,7 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-01T17:59:17+00:00\n" "PO-Revision-Date: 2019-05-01 17:43+0000\n" -"Last-Translator: Bernd Bestel , 2019\n" +"Last-Translator: Peter Wickenberg , 2019\n" "Language-Team: Swedish (Sweden) (https://www.transifex.com/grocy/teams/93189/sv_SE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,13 +23,13 @@ msgid "text-single-line" msgstr "Text (en rad)" msgid "text-multi-line" -msgstr "Text (multipla rader)" +msgstr "Text (flera rader)" msgid "number-integral" -msgstr "Nummer (integral)" +msgstr "Antal (heltal)" msgid "number-decimal" -msgstr "Nummer (decimal)" +msgstr "Antal (decimal)" msgid "date" msgstr "Datum (utan tid)" @@ -36,3 +39,12 @@ msgstr "Datum & tid" msgid "checkbox" msgstr "Kryssruta" + +msgid "preset-list" +msgstr "mall-lista" + +msgid "preset-checklist" +msgstr "förchecklista" + +msgid "link" +msgstr "länk" diff --git a/master.tar.gz b/master.tar.gz new file mode 100644 index 00000000..a8596279 Binary files /dev/null and b/master.tar.gz differ diff --git a/middleware/ApiKeyAuthMiddleware.php b/middleware/ApiKeyAuthMiddleware.php index 0e034a2f..462d3d55 100644 --- a/middleware/ApiKeyAuthMiddleware.php +++ b/middleware/ApiKeyAuthMiddleware.php @@ -2,12 +2,17 @@ namespace Grocy\Middleware; -use \Grocy\Services\SessionService; -use \Grocy\Services\ApiKeyService; +use Psr\Http\Message\ServerRequestInterface as Request; +use Psr\Http\Server\RequestHandlerInterface as RequestHandler; +use Psr\Http\Message\ResponseInterface as Response; +use Slim\Routing\RouteContext; + +use Grocy\Services\SessionService; +use Grocy\Services\ApiKeyService; class ApiKeyAuthMiddleware extends BaseMiddleware { - public function __construct(\Slim\Container $container, string $sessionCookieName, string $apiKeyHeaderName) + public function __construct(\DI\Container $container, string $sessionCookieName, string $apiKeyHeaderName) { parent::__construct($container); $this->SessionCookieName = $sessionCookieName; @@ -17,15 +22,16 @@ class ApiKeyAuthMiddleware extends BaseMiddleware protected $SessionCookieName; protected $ApiKeyHeaderName; - public function __invoke(\Slim\Http\Request $request, \Slim\Http\Response $response, callable $next) + public function __invoke(Request $request, RequestHandler $handler): Response { - $route = $request->getAttribute('route'); + $routeContext = RouteContext::fromRequest($request); + $route = $routeContext->getRoute(); $routeName = $route->getName(); - if (GROCY_IS_DEMO_INSTALL || GROCY_IS_EMBEDDED_INSTALL || GROCY_DISABLE_AUTH) + if (GROCY_MODE === 'dev' || GROCY_MODE === 'demo' || GROCY_MODE === 'prerelease' || GROCY_IS_EMBEDDED_INSTALL || GROCY_DISABLE_AUTH) { define('GROCY_AUTHENTICATED', true); - $response = $next($request, $response); + $response = $handler->handle($request); } else { @@ -73,6 +79,7 @@ class ApiKeyAuthMiddleware extends BaseMiddleware if (!$validSession && !$validApiKey) { define('GROCY_AUTHENTICATED', false); + $response = new \Slim\Psr7\Response(); // No content when unauthorized $response = $response->withStatus(401); } elseif ($validApiKey) @@ -81,7 +88,7 @@ class ApiKeyAuthMiddleware extends BaseMiddleware define('GROCY_AUTHENTICATED', true); define('GROCY_USER_ID', $user->id); - $response = $next($request, $response); + $response = $handler->handle($request); } elseif ($validSession) { @@ -89,7 +96,7 @@ class ApiKeyAuthMiddleware extends BaseMiddleware define('GROCY_AUTHENTICATED', true); define('GROCY_USER_ID', $user->id); - $response = $next($request, $response); + $response = $handler->handle($request); } } diff --git a/middleware/BaseMiddleware.php b/middleware/BaseMiddleware.php index 5a1793c4..3b38a957 100644 --- a/middleware/BaseMiddleware.php +++ b/middleware/BaseMiddleware.php @@ -6,7 +6,7 @@ use \Grocy\Services\ApplicationService; class BaseMiddleware { - public function __construct(\Slim\Container $container) + public function __construct(\DI\Container $container) { $this->AppContainer = $container; $this->ApplicationService = ApplicationService::getInstance(); diff --git a/middleware/JsonMiddleware.php b/middleware/JsonMiddleware.php index 9e7cb635..8f60defc 100644 --- a/middleware/JsonMiddleware.php +++ b/middleware/JsonMiddleware.php @@ -2,11 +2,15 @@ namespace Grocy\Middleware; +use Psr\Http\Message\ServerRequestInterface as Request; +use Psr\Http\Server\RequestHandlerInterface as RequestHandler; +use Psr\Http\Message\ResponseInterface as Response; + class JsonMiddleware extends BaseMiddleware { - public function __invoke(\Slim\Http\Request $request, \Slim\Http\Response $response, callable $next) + public function __invoke(Request $request, RequestHandler $handler): Response { - $response = $next($request, $response); + $response = $handler->handle($request); if ($response->hasHeader('Content-Disposition')) { diff --git a/middleware/SessionAuthMiddleware.php b/middleware/SessionAuthMiddleware.php index 9d5109bb..2a6b4ce3 100644 --- a/middleware/SessionAuthMiddleware.php +++ b/middleware/SessionAuthMiddleware.php @@ -2,12 +2,17 @@ namespace Grocy\Middleware; -use \Grocy\Services\SessionService; -use \Grocy\Services\LocalizationService; +use Psr\Http\Message\ServerRequestInterface as Request; +use Psr\Http\Server\RequestHandlerInterface as RequestHandler; +use Psr\Http\Message\ResponseInterface as Response; +use Slim\Routing\RouteContext; + +use Grocy\Services\SessionService; +use Grocy\Services\LocalizationService; class SessionAuthMiddleware extends BaseMiddleware { - public function __construct(\Slim\Container $container, string $sessionCookieName) + public function __construct(\DI\Container $container, string $sessionCookieName) { parent::__construct($container); $this->SessionCookieName = $sessionCookieName; @@ -15,30 +20,32 @@ class SessionAuthMiddleware extends BaseMiddleware protected $SessionCookieName; - public function __invoke(\Slim\Http\Request $request, \Slim\Http\Response $response, callable $next) + public function __invoke(Request $request, RequestHandler $handler): Response { - $route = $request->getAttribute('route'); + $routeContext = RouteContext::fromRequest($request); + $route = $routeContext->getRoute(); $routeName = $route->getName(); $sessionService = SessionService::getInstance(); if ($routeName === 'root') { - $response = $next($request, $response); + $response = $handler->handle($request); } - elseif (GROCY_IS_DEMO_INSTALL || GROCY_IS_EMBEDDED_INSTALL || GROCY_DISABLE_AUTH) + elseif (GROCY_MODE === 'dev' || GROCY_MODE === 'demo' || GROCY_MODE === 'prerelease' || GROCY_IS_EMBEDDED_INSTALL || GROCY_DISABLE_AUTH) { $user = $sessionService->GetDefaultUser(); define('GROCY_AUTHENTICATED', true); define('GROCY_USER_USERNAME', $user->username); - $response = $next($request, $response); + $response = $handler->handle($request); } else { if ((!isset($_COOKIE[$this->SessionCookieName]) || !$sessionService->IsValidSession($_COOKIE[$this->SessionCookieName])) && $routeName !== 'login') { define('GROCY_AUTHENTICATED', false); - $response = $response->withRedirect($this->AppContainer->UrlManager->ConstructUrl('/login')); + $response = $handler->handle($request); + $response = $response->withHeader('Location', $this->AppContainer->get('UrlManager')->ConstructUrl('/login')); } else { @@ -54,7 +61,7 @@ class SessionAuthMiddleware extends BaseMiddleware define('GROCY_AUTHENTICATED', false); } - $response = $next($request, $response); + $response = $handler->handle($request); } } diff --git a/migrations/0095.sql b/migrations/0095.sql index dfd01779..45c614fd 100644 --- a/migrations/0095.sql +++ b/migrations/0095.sql @@ -6,6 +6,10 @@ BEGIN AND location_id IS NULL; END; +UPDATE stock +SET location_id = (SELECT location_id FROM products where id = product_id) +WHERE location_id IS NULL; + CREATE TRIGGER set_products_default_location_if_empty_stock_log AFTER INSERT ON stock_log BEGIN UPDATE stock_log @@ -14,6 +18,10 @@ BEGIN AND location_id IS NULL; END; +UPDATE stock_log +SET location_id = (SELECT location_id FROM products where id = product_id) +WHERE location_id IS NULL; + ALTER TABLE stock_log ADD correlation_id TEXT; @@ -35,3 +43,22 @@ FROM stock s JOIN locations l ON s.location_id = l.id GROUP BY s.product_id, s.location_id, l.name; + +ALTER TABLE recipes +ADD product_id INTEGER; + +DROP VIEW recipes_resolved; +CREATE VIEW recipes_resolved +AS +SELECT + 1 AS id, -- Dummy, LessQL needs an id column + r.id AS recipe_id, + IFNULL(MIN(rpr.need_fulfilled), 1) AS need_fulfilled, + IFNULL(MIN(rpr.need_fulfilled_with_shopping_list), 1) AS need_fulfilled_with_shopping_list, ( + SELECT COUNT(*) FROM recipes_pos_resolved WHERE recipe_id = r.id AND need_fulfilled = 0) AS missing_products_count, + IFNULL(SUM(rpr.costs), 0) AS costs, + IFNULL(SUM(rpr.calories), 0) AS calories +FROM recipes r +LEFT JOIN recipes_pos_resolved rpr + ON r.id = rpr.recipe_id +GROUP BY r.id; diff --git a/migrations/0096.sql b/migrations/0096.sql new file mode 100644 index 00000000..9c2421d5 --- /dev/null +++ b/migrations/0096.sql @@ -0,0 +1,163 @@ +PRAGMA legacy_alter_table = ON; + +ALTER TABLE meal_plan RENAME TO meal_plan_old; + +CREATE TABLE meal_plan ( + id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE, + day DATE NOT NULL, + type TEXT DEFAULT 'recipe', + recipe_id INTEGER, + recipe_servings INTEGER DEFAULT 1, + note TEXT, + product_id INTEGER, + product_amount REAL DEFAULT 0, + product_qu_id INTEGER, + row_created_timestamp DATETIME DEFAULT (datetime('now', 'localtime')) +); + +INSERT INTO meal_plan + (day, recipe_id, recipe_servings, row_created_timestamp, type) +SELECT day, recipe_id, servings, row_created_timestamp, 'recipe' +FROM meal_plan_old; + +DROP TABLE meal_plan_old; + +CREATE TRIGGER create_internal_recipe AFTER INSERT ON meal_plan +BEGIN + /* This contains practically the same logic as the trigger remove_internal_recipe */ + + -- Create a recipe per day + DELETE FROM recipes + WHERE name = NEW.day + AND type = 'mealplan-day'; + + INSERT OR REPLACE INTO recipes + (id, name, type) + VALUES + ((SELECT MIN(id) - 1 FROM recipes), NEW.day, 'mealplan-day'); + + -- Create a recipe per week + DELETE FROM recipes + WHERE name = LTRIM(STRFTIME('%Y-%W', NEW.day), '0') + AND type = 'mealplan-week'; + + INSERT INTO recipes + (id, name, type) + VALUES + ((SELECT MIN(id) - 1 FROM recipes), LTRIM(STRFTIME('%Y-%W', NEW.day), '0'), 'mealplan-week'); + + -- Delete all current nestings entries for the day and week recipe + DELETE FROM recipes_nestings + WHERE recipe_id IN (SELECT id FROM recipes WHERE name = NEW.day AND type = 'mealplan-day') + OR recipe_id IN (SELECT id FROM recipes WHERE name = NEW.day AND type = 'mealplan-week'); + + -- Add all recipes for this day as included recipes in the day-recipe + INSERT INTO recipes_nestings + (recipe_id, includes_recipe_id, servings) + SELECT (SELECT id FROM recipes WHERE name = NEW.day AND type = 'mealplan-day'), recipe_id, SUM(recipe_servings) + FROM meal_plan + WHERE day = NEW.day + AND type = 'recipe' + AND recipe_id IS NOT NULL + GROUP BY recipe_id; + + -- Add all recipes for this week as included recipes in the week-recipe + INSERT INTO recipes_nestings + (recipe_id, includes_recipe_id, servings) + SELECT (SELECT id FROM recipes WHERE name = LTRIM(STRFTIME('%Y-%W', NEW.day), '0') AND type = 'mealplan-week'), recipe_id, SUM(recipe_servings) + FROM meal_plan + WHERE STRFTIME('%Y-%W', day) = STRFTIME('%Y-%W', NEW.day) + AND type = 'recipe' + AND recipe_id IS NOT NULL + GROUP BY recipe_id; + + -- Add all products for this day as ingredients in the day-recipe + INSERT INTO recipes_pos + (recipe_id, product_id, amount, qu_id) + SELECT (SELECT id FROM recipes WHERE name = NEW.day AND type = 'mealplan-day'), product_id, SUM(product_amount), product_qu_id + FROM meal_plan + WHERE day = NEW.day + AND type = 'product' + AND product_id IS NOT NULL + GROUP BY product_id, product_qu_id; + + -- Add all products for this week as ingredients recipes in the week-recipe + INSERT INTO recipes_pos + (recipe_id, product_id, amount, qu_id) + SELECT (SELECT id FROM recipes WHERE name = LTRIM(STRFTIME('%Y-%W', NEW.day), '0') AND type = 'mealplan-week'), product_id, SUM(product_amount), product_qu_id + FROM meal_plan + WHERE STRFTIME('%Y-%W', day) = STRFTIME('%Y-%W', NEW.day) + AND type = 'product' + AND product_id IS NOT NULL + GROUP BY product_id, product_qu_id; +END; + +CREATE TRIGGER remove_internal_recipe AFTER DELETE ON meal_plan +BEGIN + /* This contains practically the same logic as the trigger create_internal_recipe */ + + -- Create a recipe per day + DELETE FROM recipes + WHERE name = OLD.day + AND type = 'mealplan-day'; + + INSERT OR REPLACE INTO recipes + (id, name, type) + VALUES + ((SELECT MIN(id) - 1 FROM recipes), OLD.day, 'mealplan-day'); + + -- Create a recipe per week + DELETE FROM recipes + WHERE name = LTRIM(STRFTIME('%Y-%W', OLD.day), '0') + AND type = 'mealplan-week'; + + INSERT INTO recipes + (id, name, type) + VALUES + ((SELECT MIN(id) - 1 FROM recipes), LTRIM(STRFTIME('%Y-%W', OLD.day), '0'), 'mealplan-week'); + + -- Delete all current nestings entries for the day and week recipe + DELETE FROM recipes_nestings + WHERE recipe_id IN (SELECT id FROM recipes WHERE name = OLD.day AND type = 'mealplan-day') + OR recipe_id IN (SELECT id FROM recipes WHERE name = OLD.day AND type = 'mealplan-week'); + + -- Add all recipes for this day as included recipes in the day-recipe + INSERT INTO recipes_nestings + (recipe_id, includes_recipe_id, servings) + SELECT (SELECT id FROM recipes WHERE name = OLD.day AND type = 'mealplan-day'), recipe_id, SUM(recipe_servings) + FROM meal_plan + WHERE day = OLD.day + AND type = 'recipe' + AND recipe_id IS NOT NULL + GROUP BY recipe_id; + + -- Add all recipes for this week as included recipes in the week-recipe + INSERT INTO recipes_nestings + (recipe_id, includes_recipe_id, servings) + SELECT (SELECT id FROM recipes WHERE name = LTRIM(STRFTIME('%Y-%W', OLD.day), '0') AND type = 'mealplan-week'), recipe_id, SUM(recipe_servings) + FROM meal_plan + WHERE STRFTIME('%Y-%W', day) = STRFTIME('%Y-%W', OLD.day) + AND type = 'recipe' + AND recipe_id IS NOT NULL + GROUP BY recipe_id; + + -- Add all products for this day as ingredients in the day-recipe + INSERT INTO recipes_pos + (recipe_id, product_id, amount, qu_id) + SELECT (SELECT id FROM recipes WHERE name = OLD.day AND type = 'mealplan-day'), product_id, SUM(product_amount), product_qu_id + FROM meal_plan + WHERE day = OLD.day + AND type = 'product' + AND product_id IS NOT NULL + GROUP BY product_id, product_qu_id; + + -- Add all products for this week as ingredients recipes in the week-recipe + INSERT INTO recipes_pos + (recipe_id, product_id, amount, qu_id) + SELECT (SELECT id FROM recipes WHERE name = LTRIM(STRFTIME('%Y-%W', OLD.day), '0') AND type = 'mealplan-week'), product_id, SUM(product_amount), product_qu_id + FROM meal_plan + WHERE STRFTIME('%Y-%W', day) = STRFTIME('%Y-%W', OLD.day) + AND type = 'product' + AND product_id IS NOT NULL + GROUP BY product_id, product_qu_id; +END; diff --git a/migrations/0097.sql b/migrations/0097.sql new file mode 100644 index 00000000..269911ef --- /dev/null +++ b/migrations/0097.sql @@ -0,0 +1,31 @@ +ALTER TABLE products +ADD default_best_before_days_after_freezing INTEGER NOT NULL DEFAULT 0; + +UPDATE products +SET default_best_before_days_after_freezing = 0; + +ALTER TABLE products +ADD default_best_before_days_after_thawing INTEGER NOT NULL DEFAULT 0; + +UPDATE products +SET default_best_before_days_after_thawing = 0; + +ALTER TABLE locations +ADD is_freezer TINYINT NOT NULL DEFAULT 0; + +UPDATE locations +SET is_freezer = 0; + +DROP VIEW stock_current_locations; +CREATE VIEW stock_current_locations +AS +SELECT + 1 AS id, -- Dummy, LessQL needs an id column + s.product_id, + s.location_id AS location_id, + l.name AS location_name, + l.is_freezer AS location_is_freezer +FROM stock s +JOIN locations l + ON s.location_id = l.id +GROUP BY s.product_id, s.location_id, l.name; diff --git a/migrations/0098.sql b/migrations/0098.sql new file mode 100644 index 00000000..abbe6b71 --- /dev/null +++ b/migrations/0098.sql @@ -0,0 +1,97 @@ +DROP VIEW recipes_pos_resolved; +CREATE VIEW recipes_pos_resolved +AS + +-- Multiplication by 1.0 to force conversion to float (REAL) + +SELECT + r.id AS recipe_id, + rp.id AS recipe_pos_id, + rp.product_id AS product_id, + rp.amount * (r.desired_servings*1.0 / r.base_servings*1.0) * (rnr.includes_servings*1.0 / CASE WHEN rnr.recipe_id != rnr.includes_recipe_id THEN rnrr.base_servings*1.0 ELSE 1 END) AS recipe_amount, + IFNULL(sc.amount_aggregated, 0) AS stock_amount, + CASE WHEN IFNULL(sc.amount_aggregated, 0) >= CASE WHEN rp.only_check_single_unit_in_stock = 1 THEN 1 ELSE rp.amount * (r.desired_servings*1.0 / r.base_servings*1.0) * (rnr.includes_servings*1.0 / CASE WHEN rnr.recipe_id != rnr.includes_recipe_id THEN rnrr.base_servings*1.0 ELSE 1 END) END THEN 1 ELSE 0 END AS need_fulfilled, + CASE WHEN IFNULL(sc.amount_aggregated, 0) - CASE WHEN rp.only_check_single_unit_in_stock = 1 THEN 1 ELSE rp.amount * (r.desired_servings*1.0 / r.base_servings*1.0) * (rnr.includes_servings*1.0 / CASE WHEN rnr.recipe_id != rnr.includes_recipe_id THEN rnrr.base_servings*1.0 ELSE 1 END) END < 0 THEN ABS(IFNULL(sc.amount_aggregated, 0) - (CASE WHEN rp.only_check_single_unit_in_stock = 1 THEN 1 ELSE rp.amount * (r.desired_servings*1.0 / r.base_servings*1.0) * (rnr.includes_servings*1.0 / CASE WHEN rnr.recipe_id != rnr.includes_recipe_id THEN rnrr.base_servings*1.0 ELSE 1 END) END)) ELSE 0 END AS missing_amount, + IFNULL(sl.amount, 0) * p.qu_factor_purchase_to_stock AS amount_on_shopping_list, + CASE WHEN IFNULL(sc.amount_aggregated, 0) + (CASE WHEN r.not_check_shoppinglist = 1 THEN 0 ELSE IFNULL(sl.amount, 0) END * p.qu_factor_purchase_to_stock) >= CASE WHEN rp.only_check_single_unit_in_stock = 1 THEN 1 ELSE rp.amount * (r.desired_servings*1.0 / r.base_servings*1.0) * (rnr.includes_servings*1.0 / CASE WHEN rnr.recipe_id != rnr.includes_recipe_id THEN rnrr.base_servings*1.0 ELSE 1 END) END THEN 1 ELSE 0 END AS need_fulfilled_with_shopping_list, + rp.qu_id, + (CASE WHEN rp.only_check_single_unit_in_stock = 1 THEN 1 ELSE rp.amount * (r.desired_servings*1.0 / r.base_servings*1.0) * (rnr.includes_servings*1.0 / CASE WHEN rnr.recipe_id != rnr.includes_recipe_id THEN rnrr.base_servings*1.0 ELSE 1 END) END / p.qu_factor_purchase_to_stock) * pcp.last_price * rp.price_factor AS costs, + CASE WHEN rnr.recipe_id = rnr.includes_recipe_id THEN 0 ELSE 1 END AS is_nested_recipe_pos, + rp.ingredient_group, + pg.name as product_group, + rp.id, -- Just a dummy id column + r.type as recipe_type, + rnr.includes_recipe_id as child_recipe_id, + rp.note, + rp.variable_amount AS recipe_variable_amount, + rp.only_check_single_unit_in_stock, + rp.amount * (r.desired_servings*1.0 / r.base_servings*1.0) * (rnr.includes_servings*1.0 / CASE WHEN rnr.recipe_id != rnr.includes_recipe_id THEN rnrr.base_servings*1.0 ELSE 1 END) * IFNULL(p.calories, 0) AS calories +FROM recipes r +JOIN recipes_nestings_resolved rnr + ON r.id = rnr.recipe_id +JOIN recipes rnrr + ON rnr.includes_recipe_id = rnrr.id +JOIN recipes_pos rp + ON rnr.includes_recipe_id = rp.recipe_id +JOIN products p + ON rp.product_id = p.id +LEFT JOIN product_groups pg + ON p.product_group_id = pg.id +LEFT JOIN ( + SELECT product_id, SUM(amount) AS amount + FROM shopping_list + GROUP BY product_id) sl + ON rp.product_id = sl.product_id +LEFT JOIN stock_current sc + ON rp.product_id = sc.product_id +LEFT JOIN products_current_price pcp + ON rp.product_id = pcp.product_id +WHERE rp.not_check_stock_fulfillment = 0 + +UNION + +-- Just add all recipe positions which should not be checked against stock with fulfilled need + +SELECT + r.id AS recipe_id, + rp.id AS recipe_pos_id, + rp.product_id AS product_id, + rp.amount * (r.desired_servings*1.0 / r.base_servings*1.0) * (rnr.includes_servings*1.0 / CASE WHEN rnr.recipe_id != rnr.includes_recipe_id THEN rnrr.base_servings*1.0 ELSE 1 END) AS recipe_amount, + IFNULL(sc.amount_aggregated, 0) AS stock_amount, + 1 AS need_fulfilled, + 0 AS missing_amount, + IFNULL(sl.amount, 0) * p.qu_factor_purchase_to_stock AS amount_on_shopping_list, + 1 AS need_fulfilled_with_shopping_list, + rp.qu_id, + (CASE WHEN rp.only_check_single_unit_in_stock = 1 THEN 1 ELSE rp.amount * (r.desired_servings*1.0 / r.base_servings*1.0) * (rnr.includes_servings*1.0 / CASE WHEN rnr.recipe_id != rnr.includes_recipe_id THEN rnrr.base_servings*1.0 ELSE 1 END) END / p.qu_factor_purchase_to_stock) * pcp.last_price * rp.price_factor AS costs, + CASE WHEN rnr.recipe_id = rnr.includes_recipe_id THEN 0 ELSE 1 END AS is_nested_recipe_pos, + rp.ingredient_group, + pg.name as product_group, + rp.id, -- Just a dummy id column + r.type as recipe_type, + rnr.includes_recipe_id as child_recipe_id, + rp.note, + rp.variable_amount AS recipe_variable_amount, + rp.only_check_single_unit_in_stock, + rp.amount * (r.desired_servings*1.0 / r.base_servings*1.0) * (rnr.includes_servings*1.0 / CASE WHEN rnr.recipe_id != rnr.includes_recipe_id THEN rnrr.base_servings*1.0 ELSE 1 END) * IFNULL(p.calories, 0) AS calories +FROM recipes r +JOIN recipes_nestings_resolved rnr + ON r.id = rnr.recipe_id +JOIN recipes rnrr + ON rnr.includes_recipe_id = rnrr.id +JOIN recipes_pos rp + ON rnr.includes_recipe_id = rp.recipe_id +JOIN products p + ON rp.product_id = p.id +LEFT JOIN product_groups pg + ON p.product_group_id = pg.id +LEFT JOIN ( + SELECT product_id, SUM(amount) AS amount + FROM shopping_list + GROUP BY product_id) sl + ON rp.product_id = sl.product_id +LEFT JOIN stock_current sc + ON rp.product_id = sc.product_id +LEFT JOIN products_current_price pcp + ON rp.product_id = pcp.product_id +WHERE rp.not_check_stock_fulfillment = 1; diff --git a/package.json b/package.json index 3304ae6c..1afdf44c 100644 --- a/package.json +++ b/package.json @@ -3,8 +3,9 @@ "private": true, "dependencies": { "@danielfarrell/bootstrap-combobox": "https://github.com/berrnd/bootstrap-combobox.git#master", - "@fortawesome/fontawesome-free": "^5.11.1", + "@fortawesome/fontawesome-free": "^5.12.1", "TagManager": "https://github.com/max-favilli/tagmanager.git#master", + "animate.css": "^3.7.2", "bootbox": "^5.3.2", "bootstrap": "^4.3.1", "bootstrap-select": "^1.13.10", @@ -20,15 +21,15 @@ "datatables.net-select": "^1.3.0", "datatables.net-select-bs4": "^1.3.0", "fullcalendar": "^3.10.1", - "gettext-translator": "^2.1.0", + "gettext-translator": "2.1.0", "jquery": "^3.4.1", "jquery-lazy": "^1.7.10", "jquery-serializejson": "^2.9.0", - "jquery-ui-dist": "^1.12.1", "moment": "^2.24.0", + "nosleep.js": "^0.9.0", "quagga": "^0.12.1", "sprintf-js": "^1.1.2", - "startbootstrap-sb-admin": "^4.0.0", + "startbootstrap-sb-admin": "4.0.0", "summernote": "^0.8.12", "swagger-ui-dist": "^3.23.10", "tempusdominus-bootstrap-4": "https://github.com/berrnd/tempusdominus-bootstrap-4.git#master", diff --git a/public/css/grocy.css b/public/css/grocy.css index 63299909..0e0195f9 100644 --- a/public/css/grocy.css +++ b/public/css/grocy.css @@ -41,6 +41,10 @@ a.discrete-link:focus { background-color: #e5e5e5; } +.card-header:first-child { + border-radius: 0; +} + .card-body { flex-grow: 0; } @@ -51,13 +55,13 @@ a.discrete-link:focus { .fullscreen { z-index: 8888; - width: 100%; height: 100%; position: fixed; top: 0; left: 0; overflow: auto; - } + background-color: #ffffff; +} /* Fixes smooth scrolling on iOS */ #sidebarResponsive, @@ -65,7 +69,7 @@ a.discrete-link:focus { -webkit-overflow-scrolling: touch; } -.fullscreen-card .card-header { +.fullscreen-card .card-header-fullscreen { z-index: 9999; width: 100%; position: fixed; @@ -119,9 +123,15 @@ input::-webkit-inner-spin-button { /* Navigation style customizations */ #mainNav { + line-height: 1; background-color: #e5e5e5 !important; border-bottom: 2px solid !important; border-color: #d6d6d6 !important; + padding-bottom: 0.3rem; +} + +#mainNav .dropdown-menu { + line-height: 1.5; } .navbar-sidenav { @@ -143,7 +153,8 @@ input::-webkit-inner-spin-button { border-radius: 0; } -.navbar-nav .dropdown-divider { +.navbar-nav .dropdown-divider, +.nav-item-divider { border-top: 2px solid !important; border-color: #d6d6d6 !important; } @@ -305,6 +316,28 @@ input::-webkit-inner-spin-button { } } +@media (min-width:992px) { + #mainNav .navbar-collapse .navbar-sidenav { + margin-top: 46px; + } + + #mainNav.fixed-top .navbar-sidenav { + height: calc(100vh - 94px) + } + + #mainNav.fixed-top .sidenav-toggler { + margin-top:calc(100vh - 48px); + } + + .content-wrapper { + margin-left: 245px; + } +} + +body.fixed-nav { + padding-top: 54px; +} + html { min-height: inherit; } @@ -317,6 +350,10 @@ html { padding-right: 1.25em !important; } +#sidebarResponsive .nav-item-sidebar { + line-height: 1; +} + /* Third party component customizations - Tempus Dominus */ .bootstrap-datetimepicker-widget.dropdown-menu { width: auto !important; diff --git a/public/js/extensions.js b/public/js/extensions.js index bfe91e6e..e8f5b1c8 100644 --- a/public/js/extensions.js +++ b/public/js/extensions.js @@ -145,3 +145,30 @@ function Delay(callable, delayMilliseconds) }, delayMilliseconds || 0); }; } + +$.fn.isVisibleInViewport = function(extraHeightPadding = 0) +{ + var elementTop = $(this).offset().top; + var viewportTop = $(window).scrollTop() - extraHeightPadding; + + return elementTop + $(this).outerHeight() > viewportTop && elementTop < viewportTop + $(window).height(); +}; + +function animateCSS(selector, animationName, callback, speed = "faster") +{ + var nodes = $(selector); + nodes.addClass('animated').addClass(speed).addClass(animationName); + + function handleAnimationEnd() + { + nodes.removeClass('animated').removeClass(speed).removeClass(animationName); + nodes.unbind('animationend', handleAnimationEnd); + + if (typeof callback === 'function') + { + callback(); + } + } + + nodes.on('animationend', handleAnimationEnd); +} diff --git a/public/js/grocy.js b/public/js/grocy.js index 7ee410ad..275cd6fe 100644 --- a/public/js/grocy.js +++ b/public/js/grocy.js @@ -258,11 +258,29 @@ if (!Grocy.ActiveNav.isEmpty()) var menuItem = $('#sidebarResponsive').find("[data-nav-for-page='" + Grocy.ActiveNav + "']"); menuItem.addClass('active-page'); - var parentMenuSelector = menuItem.data("sub-menu-of"); - if (typeof parentMenuSelector !== "undefined") + if (menuItem.length) { - $(parentMenuSelector).collapse("show"); - $(parentMenuSelector).prev(".nav-link-collapse").addClass("active-page"); + var parentMenuSelector = menuItem.data("sub-menu-of"); + if (typeof parentMenuSelector !== "undefined") + { + $(parentMenuSelector).collapse("show"); + $(parentMenuSelector).prev(".nav-link-collapse").addClass("active-page"); + + $(parentMenuSelector).on("shown.bs.collapse", function (e) + { + if (!menuItem.isVisibleInViewport(75)) + { + menuItem[0].scrollIntoView(); + } + }) + } + else + { + if (!menuItem.isVisibleInViewport(75)) + { + menuItem[0].scrollIntoView(); + } + } } } @@ -293,9 +311,9 @@ if (window.localStorage.getItem("sidebar_state") === "collapsed") } $.timeago.settings.allowFuture = true; -RefreshContextualTimeago = function() +RefreshContextualTimeago = function(rootSelector = "#page-content") { - $("time.timeago").each(function() + $(rootSelector + " time.timeago").each(function() { var element = $(this); @@ -425,7 +443,7 @@ $(document).on("click", "select", function() }); // Auto saving user setting controls -$(".user-setting-control").on("change", function() +$(document).on("change", ".user-setting-control", function() { var element = $(this); var settingKey = element.attr("data-setting-key"); @@ -526,9 +544,9 @@ $("#about-dialog-link").on("click", function() }); }); -function RefreshLocaleNumberDisplay() +function RefreshLocaleNumberDisplay(rootSelector = "#page-content") { - $(".locale-number.locale-number-currency").each(function() + $(rootSelector + " .locale-number.locale-number-currency").each(function() { if (isNaN(parseFloat($(this).text()))) { @@ -538,7 +556,7 @@ function RefreshLocaleNumberDisplay() $(this).text(parseFloat($(this).text()).toLocaleString(undefined, { style: "currency", currency: Grocy.Currency })); }); - $(".locale-number.locale-number-quantity-amount").each(function() + $(rootSelector + " .locale-number.locale-number-quantity-amount").each(function() { if (isNaN(parseFloat($(this).text()))) { @@ -548,7 +566,7 @@ function RefreshLocaleNumberDisplay() $(this).text(parseFloat($(this).text()).toLocaleString(undefined, { minimumFractionDigits: 0, maximumFractionDigits: 3 })); }); - $(".locale-number.locale-number-generic").each(function () + $(rootSelector + " .locale-number.locale-number-generic").each(function () { if (isNaN(parseFloat($(this).text()))) { @@ -614,10 +632,10 @@ $(document).on("click", ".show-as-dialog-link", function(e) backdrop: true, closeButton: false, buttons: { - ok: { - label: __t('OK'), - className: 'btn-success responsive-button', - callback: function() + cancel: { + label: __t('Cancel'), + className: 'btn-secondary responsive-button', + callback: function () { bootbox.hideAll(); } diff --git a/public/js/grocy_uisound.js b/public/js/grocy_uisound.js new file mode 100644 index 00000000..b7150084 --- /dev/null +++ b/public/js/grocy_uisound.js @@ -0,0 +1,26 @@ +Grocy.UISound = { }; + +Grocy.UISound.Play = function(url) +{ + new Audio(url).play(); +} + +Grocy.UISound.AskForPermission = function() +{ + Grocy.UISound.Play(U("/uisounds/silence.mp3")); +} + +Grocy.UISound.Success = function() +{ + Grocy.UISound.Play(U("/uisounds/success.mp3")); +} + +Grocy.UISound.Error = function() +{ + Grocy.UISound.Play(U("/uisounds/error.mp3")); +} + +Grocy.UISound.BarcodeScannerBeep = function() +{ + Grocy.UISound.Play(U("/uisounds/barcodescannerbeep.mp3")); +} diff --git a/public/js/grocy_wakelockhandling.js b/public/js/grocy_wakelockhandling.js new file mode 100644 index 00000000..a18b3a31 --- /dev/null +++ b/public/js/grocy_wakelockhandling.js @@ -0,0 +1,72 @@ +Grocy.WakeLock = { }; +Grocy.WakeLock.NoSleepJsIntance = null; +Grocy.WakeLock.InitDone = false; + +$("#keep_screen_on").on("change", function() +{ + var value = $(this).is(":checked"); + if (value) + { + Grocy.WakeLock.Enable(); + } + else + { + Grocy.WakeLock.Disable(); + } +}); + +Grocy.WakeLock.Enable = function() +{ + if (Grocy.WakeLock.NoSleepJsIntance === null) + { + Grocy.WakeLock.NoSleepJsIntance = new NoSleep(); + } + Grocy.WakeLock.NoSleepJsIntance.enable(); + Grocy.WakeLock.InitDone = true; +} + +Grocy.WakeLock.Disable = function() +{ + if (Grocy.WakeLock.NoSleepJsIntance !== null) + { + Grocy.WakeLock.NoSleepJsIntance.disable(); + } +} + +// Handle "Keep screen on while displaying a fullscreen-card" when the body class "fullscreen-card" has changed +new MutationObserver(function(mutations) +{ + if (BoolVal(Grocy.UserSettings.keep_screen_on_when_fullscreen_card) && !BoolVal(Grocy.UserSettings.keep_screen_on)) + { + mutations.forEach(function(mutation) + { + if (mutation.attributeName === "class") + { + var attributeValue = $(mutation.target).prop(mutation.attributeName); + if (attributeValue.contains("fullscreen-card")) + { + Grocy.WakeLock.Enable(); + } + else + { + Grocy.WakeLock.Disable(); + } + } + }); + } +}).observe(document.body, { + attributes: true +}); + +// Enabling NoSleep.Js only works in a user input event handler, +// so if the user wants to keep the screen on always, +// do this in on the first click on anything +$(document).click(function() +{ + if (Grocy.WakeLock.InitDone === false && BoolVal(Grocy.UserSettings.keep_screen_on)) + { + Grocy.WakeLock.Enable(); + } + + Grocy.WakeLock.InitDone = true; +}); diff --git a/public/uisounds/barcodescannerbeep.mp3 b/public/uisounds/barcodescannerbeep.mp3 new file mode 100644 index 00000000..e488a47e Binary files /dev/null and b/public/uisounds/barcodescannerbeep.mp3 differ diff --git a/public/uisounds/error.mp3 b/public/uisounds/error.mp3 new file mode 100644 index 00000000..f68bc892 Binary files /dev/null and b/public/uisounds/error.mp3 differ diff --git a/public/uisounds/silence.mp3 b/public/uisounds/silence.mp3 new file mode 100644 index 00000000..057d3ffc Binary files /dev/null and b/public/uisounds/silence.mp3 differ diff --git a/public/uisounds/success.mp3 b/public/uisounds/success.mp3 new file mode 100644 index 00000000..6c752d65 Binary files /dev/null and b/public/uisounds/success.mp3 differ diff --git a/public/viewjs/barcodescannertesting.js b/public/viewjs/barcodescannertesting.js index 9f04f83c..2639ac91 100644 --- a/public/viewjs/barcodescannertesting.js +++ b/public/viewjs/barcodescannertesting.js @@ -61,20 +61,16 @@ function OnBarcodeScanned(barcode) Grocy.BarCodeScannerTestingMissCount++; bgClass = "bg-danger"; - $("#miss-count").fadeOut(200, function () - { - $(this).text(Grocy.BarCodeScannerTestingMissCount).fadeIn(200); - }); + $("#miss-count").text(Grocy.BarCodeScannerTestingMissCount); + animateCSS("#miss-count", "pulse"); } else { Grocy.BarCodeScannerTestingHitCount++; bgClass = "bg-success"; - $("#hit-count").fadeOut(200, function () - { - $(this).text(Grocy.BarCodeScannerTestingHitCount).fadeIn(200); - }); + $("#hit-count").text(Grocy.BarCodeScannerTestingHitCount); + animateCSS("#hit-count", "pulse"); } $("#scanned_codes").prepend(""); diff --git a/public/viewjs/batteries.js b/public/viewjs/batteries.js index d08d143b..893e8ed9 100644 --- a/public/viewjs/batteries.js +++ b/public/viewjs/batteries.js @@ -1,7 +1,8 @@ var batteriesTable = $('#batteries-table').DataTable({ 'order': [[1, 'asc']], 'columnDefs': [ - { 'orderable': false, 'targets': 0 } + { 'orderable': false, 'targets': 0 }, + { 'searchable': false, "targets": 0 } ], }); $('#batteries-table tbody').removeClass("d-none"); diff --git a/public/viewjs/batteriesjournal.js b/public/viewjs/batteriesjournal.js index 0466b4d1..b998fce0 100644 --- a/public/viewjs/batteriesjournal.js +++ b/public/viewjs/batteriesjournal.js @@ -2,7 +2,8 @@ 'paginate': true, 'order': [[1, 'desc']], 'columnDefs': [ - { 'orderable': false, 'targets': 0 } + { 'orderable': false, 'targets': 0 }, + { 'searchable': false, "targets": 0 } ] }); $('#batteries-journal-table tbody').removeClass("d-none"); @@ -49,8 +50,8 @@ $(document).on('click', '.undo-battery-execution-button', function(e) { element.closest("tr").addClass("text-muted"); element.parent().siblings().find("span.name-anchor").addClass("text-strike-through").after("
" + __t("Undone on") + " " + moment().format("YYYY-MM-DD HH:mm:ss") + " "); - element.closest(".undo-stock-booking-button").addClass("disabled"); - RefreshContextualTimeago(); + element.closest(".undo-battery-execution-button").addClass("disabled"); + RefreshContextualTimeago("#charge-cycle-" + chargeCycleId + "-row"); toastr.success(__t("Charge cycle successfully undone")); }, function(xhr) diff --git a/public/viewjs/batteriesoverview.js b/public/viewjs/batteriesoverview.js index ef462f67..32a02cb4 100644 --- a/public/viewjs/batteriesoverview.js +++ b/public/viewjs/batteriesoverview.js @@ -1,7 +1,8 @@ var batteriesOverviewTable = $('#batteries-overview-table').DataTable({ 'order': [[2, 'desc']], 'columnDefs': [ - { 'orderable': false, 'targets': 0 } + { 'orderable': false, 'targets': 0 }, + { 'searchable': false, "targets": 0 } ] }); $('#batteries-overview-table tbody').removeClass("d-none"); @@ -75,26 +76,19 @@ $(document).on('click', '.track-charge-cycle-button', function(e) batteryRow.addClass("table-warning"); } - $('#battery-' + batteryId + '-last-tracked-time').parent().effect('highlight', { }, 500); - $('#battery-' + batteryId + '-last-tracked-time').fadeOut(500, function() - { - $(this).text(trackedTime).fadeIn(500); - }); - $('#battery-' + batteryId + '-last-tracked-time-timeago').attr('datetime', trackedTime); + animateCSS("#battery-" + batteryId + "-row td:not(:first)", "shake"); + $('#battery-' + batteryId + '-last-tracked-time').text(trackedTime); + $('#battery-' + batteryId + '-last-tracked-time-timeago').attr('datetime', trackedTime); if (result.battery.charge_interval_days != 0) { - $('#battery-' + batteryId + '-next-charge-time').parent().effect('highlight', { }, 500); - $('#battery-' + batteryId + '-next-charge-time').fadeOut(500, function() - { - $(this).text(result.next_estimated_charge_time).fadeIn(500); - }); + $('#battery-' + batteryId + '-next-charge-time').text(result.next_estimated_charge_time); $('#battery-' + batteryId + '-next-charge-time-timeago').attr('datetime', result.next_estimated_charge_time); } Grocy.FrontendHelpers.EndUiBusy(); toastr.success(__t('Tracked charge cycle of battery %1$s on %2$s', batteryName, trackedTime)); - RefreshContextualTimeago(); + RefreshContextualTimeago("#battery-" + batteryId + "-row"); RefreshStatistics(); }, function(xhr) diff --git a/public/viewjs/calendar.js b/public/viewjs/calendar.js index c4a50ef7..42634b16 100644 --- a/public/viewjs/calendar.js +++ b/public/viewjs/calendar.js @@ -14,7 +14,8 @@ var calendar = $("#calendar").fullCalendar({ "weekNumbers": Grocy.CalendarShowWeekNumbers, "defaultView": ($(window).width() < 768) ? "agendaDay" : "month", "firstDay": firstDay, - "eventLimit": true, + "eventLimit": false, + "height": "auto", "eventSources": fullcalendarEventSources }); diff --git a/public/viewjs/chores.js b/public/viewjs/chores.js index 848c9259..8c600cf6 100644 --- a/public/viewjs/chores.js +++ b/public/viewjs/chores.js @@ -1,7 +1,8 @@ var choresTable = $('#chores-table').DataTable({ 'order': [[1, 'asc']], 'columnDefs': [ - { 'orderable': false, 'targets': 0 } + { 'orderable': false, 'targets': 0 }, + { 'searchable': false, "targets": 0 } ] }); $('#chores-table tbody').removeClass("d-none"); diff --git a/public/viewjs/choresjournal.js b/public/viewjs/choresjournal.js index c80e495f..2e548998 100644 --- a/public/viewjs/choresjournal.js +++ b/public/viewjs/choresjournal.js @@ -2,7 +2,8 @@ 'paginate': true, 'order': [[1, 'desc']], 'columnDefs': [ - { 'orderable': false, 'targets': 0 } + { 'orderable': false, 'targets': 0 }, + { 'searchable': false, "targets": 0 } ] }); $('#chores-journal-table tbody').removeClass("d-none"); @@ -50,7 +51,7 @@ $(document).on('click', '.undo-chore-execution-button', function(e) element.closest("tr").addClass("text-muted"); element.parent().siblings().find("span.name-anchor").addClass("text-strike-through").after("
" + __t("Undone on") + " " + moment().format("YYYY-MM-DD HH:mm:ss") + " "); element.closest(".undo-stock-booking-button").addClass("disabled"); - RefreshContextualTimeago(); + RefreshContextualTimeago("#chore-execution-" + executionId + "-row"); toastr.success(__t("Chore execution successfully undone")); }, function(xhr) diff --git a/public/viewjs/choresoverview.js b/public/viewjs/choresoverview.js index 33428010..b08a2e1f 100644 --- a/public/viewjs/choresoverview.js +++ b/public/viewjs/choresoverview.js @@ -1,7 +1,8 @@ var choresOverviewTable = $('#chores-overview-table').DataTable({ 'order': [[2, 'desc']], 'columnDefs': [ - { 'orderable': false, 'targets': 0 } + { 'orderable': false, 'targets': 0 }, + { 'searchable': false, "targets": 0 } ] }); $('#chores-overview-table tbody').removeClass("d-none"); @@ -112,30 +113,20 @@ $(document).on('click', '.track-chore-button', function(e) $('#chore-' + choreId + '-due-filter-column').html("duesoon"); } - $('#chore-' + choreId + '-last-tracked-time').parent().effect('highlight', { }, 500); - $('#chore-' + choreId + '-last-tracked-time').fadeOut(500, function() - { - $(this).text(trackedTime).fadeIn(500); - }); + animateCSS("#chore-" + choreId + "-row td:not(:first)", "shake"); + + $('#chore-' + choreId + '-last-tracked-time').text(trackedTime); $('#chore-' + choreId + '-last-tracked-time-timeago').attr('datetime', trackedTime); if (result.chore.period_type == "dynamic-regular") { - $('#chore-' + choreId + '-next-execution-time').parent().effect('highlight', { }, 500); - $('#chore-' + choreId + '-next-execution-time').fadeOut(500, function() - { - $(this).text(result.next_estimated_execution_time).fadeIn(500); - }); + $('#chore-' + choreId + '-next-execution-time').text(result.next_estimated_execution_time); $('#chore-' + choreId + '-next-execution-time-timeago').attr('datetime', result.next_estimated_execution_time); } if (result.chore.next_execution_assigned_to_user_id != null) { - $('#chore-' + choreId + '-next-execution-assigned-user').parent().effect('highlight', {}, 500); - $('#chore-' + choreId + '-next-execution-assigned-user').fadeOut(500, function () - { - $(this).text(result.next_execution_assigned_user.display_name).fadeIn(500); - }); + $('#chore-' + choreId + '-next-execution-assigned-user').text(result.next_execution_assigned_user.display_name); } Grocy.FrontendHelpers.EndUiBusy(); @@ -145,7 +136,7 @@ $(document).on('click', '.track-chore-button', function(e) // Delay due to delayed/animated set of new timestamps above setTimeout(function() { - RefreshContextualTimeago(); + RefreshContextualTimeago("#chore-" + choreId + "-row"); // Refresh the DataTable to re-apply filters choresOverviewTable.rows().invalidate().draw(false); diff --git a/public/viewjs/components/barcodescanner.js b/public/viewjs/components/barcodescanner.js index 82d3973e..b43b2f83 100644 --- a/public/viewjs/components/barcodescanner.js +++ b/public/viewjs/components/barcodescanner.js @@ -63,6 +63,7 @@ Grocy.Components.BarcodeScanner.StartScanning = function() if (error) { Grocy.FrontendHelpers.ShowGenericError("Error while initializing the barcode scanning library", error.message); + toastr.info(__t("Camera access is on only possible when supported and allowed by your browser and when grocy is served via a secure (https://) connection")); setTimeout(function() { bootbox.hideAll(); diff --git a/public/viewjs/components/batterycard.js b/public/viewjs/components/batterycard.js index ab180ff0..d23d8736 100644 --- a/public/viewjs/components/batterycard.js +++ b/public/viewjs/components/batterycard.js @@ -17,7 +17,7 @@ Grocy.Components.BatteryCard.Refresh = function(batteryId) $('#batterycard-battery-journal-button').removeClass("disabled"); EmptyElementWhenMatches('#batterycard-battery-last-charged-timeago', __t('timeago_nan')); - RefreshContextualTimeago(); + RefreshContextualTimeago(".batterycard"); }, function(xhr) { diff --git a/public/viewjs/components/chorecard.js b/public/viewjs/components/chorecard.js index f0bb4b5b..83ca9d22 100644 --- a/public/viewjs/components/chorecard.js +++ b/public/viewjs/components/chorecard.js @@ -26,7 +26,7 @@ Grocy.Components.ChoreCard.Refresh = function(choreId) } EmptyElementWhenMatches('#chorecard-chore-last-tracked-timeago', __t('timeago_nan')); - RefreshContextualTimeago(); + RefreshContextualTimeago(".chorecard"); }, function(xhr) { diff --git a/public/viewjs/components/datetimepicker.js b/public/viewjs/components/datetimepicker.js index d673a942..6a43566d 100644 --- a/public/viewjs/components/datetimepicker.js +++ b/public/viewjs/components/datetimepicker.js @@ -221,7 +221,10 @@ Grocy.Components.DateTimePicker.GetInputElement().on('keyup', function(e) var element = Grocy.Components.DateTimePicker.GetInputElement()[0]; if (!dateObj.isValid()) { - element.setCustomValidity("error"); + if ($(element).hasAttr("required")) + { + element.setCustomValidity("error"); + } } else { @@ -265,7 +268,7 @@ Grocy.Components.DateTimePicker.GetInputElement().on('input', function(e) { $('#datetimepicker-timeago').attr("datetime", Grocy.Components.DateTimePicker.GetValue()); EmptyElementWhenMatches('#datetimepicker-timeago', __t('timeago_nan')); - RefreshContextualTimeago(); + RefreshContextualTimeago("#datetimepicker-wrapper"); }); $('.datetimepicker').on('update.datetimepicker', function(e) diff --git a/public/viewjs/components/datetimepicker2.js b/public/viewjs/components/datetimepicker2.js new file mode 100644 index 00000000..24e4650b --- /dev/null +++ b/public/viewjs/components/datetimepicker2.js @@ -0,0 +1,307 @@ +Grocy.Components.DateTimePicker2 = { }; + +Grocy.Components.DateTimePicker2.GetInputElement = function() +{ + return $('.datetimepicker2').find('input').not(".form-check-input"); +} + +Grocy.Components.DateTimePicker2.GetValue = function() +{ + return Grocy.Components.DateTimePicker2.GetInputElement().val(); +} + +Grocy.Components.DateTimePicker2.SetValue = function(value) +{ + Grocy.Components.DateTimePicker2.GetInputElement().val(value); + Grocy.Components.DateTimePicker2.GetInputElement().trigger('change'); + + // "Click" the shortcut checkbox when the desired value is + // not the shortcut value and it is currently set + var shortcutValue = $("#datetimepicker2-shortcut").data("datetimepicker2-shortcut-value"); + if (value != shortcutValue && $("#datetimepicker2-shortcut").is(":checked")) + { + $("#datetimepicker2-shortcut").click(); + } + + Grocy.Components.DateTimePicker2.GetInputElement().keyup(); +} + +Grocy.Components.DateTimePicker2.Clear = function() +{ + $(".datetimepicker2").datetimepicker("destroy"); + Grocy.Components.DateTimePicker2.Init(); + + Grocy.Components.DateTimePicker2.GetInputElement().val(""); + + // "Click" the shortcut checkbox when the desired value is + // not the shortcut value and it is currently set + value = ""; + var shortcutValue = $("#datetimepicker2-shortcut").data("datetimepicker2-shortcut-value"); + if (value != shortcutValue && $("#datetimepicker2-shortcut").is(":checked")) + { + $("#datetimepicker2-shortcut").click(); + } + + $('#datetimepicker-timeago').text(''); +} + +Grocy.Components.DateTimePicker2.ChangeFormat = function(format) +{ + $(".datetimepicker2").datetimepicker("destroy"); + Grocy.Components.DateTimePicker2.GetInputElement().data("format", format); + Grocy.Components.DateTimePicker2.Init(); + + if (format == "YYYY-MM-DD") + { + Grocy.Components.DateTimePicker2.GetInputElement().addClass("date-only-datetimepicker"); + } + else + { + Grocy.Components.DateTimePicker2.GetInputElement().removeClass("date-only-datetimepicker"); + } +} + +var startDate = null; +if (Grocy.Components.DateTimePicker2.GetInputElement().data('init-with-now') === true) +{ + startDate = moment().format(Grocy.Components.DateTimePicker2.GetInputElement().data('format')); +} +if (Grocy.Components.DateTimePicker2.GetInputElement().data('init-value').length > 0) +{ + startDate = moment(Grocy.Components.DateTimePicker2.GetInputElement().data('init-value')).format(Grocy.Components.DateTimePicker2.GetInputElement().data('format')); +} + +var limitDate = moment('2999-12-31 23:59:59'); +if (Grocy.Components.DateTimePicker2.GetInputElement().data('limit-end-to-now') === true) +{ + limitDate = moment(); +} + +Grocy.Components.DateTimePicker2.Init = function() +{ + $('.datetimepicker2').datetimepicker( + { + format: Grocy.Components.DateTimePicker2.GetInputElement().data('format'), + buttons: { + showToday: true, + showClose: true + }, + calendarWeeks: Grocy.CalendarShowWeekNumbers, + maxDate: limitDate, + locale: moment.locale(), + defaultDate: startDate, + useCurrent: false, + icons: { + time: 'far fa-clock', + date: 'far fa-calendar', + up: 'fas fa-arrow-up', + down: 'fas fa-arrow-down', + previous: 'fas fa-chevron-left', + next: 'fas fa-chevron-right', + today: 'fas fa-calendar-check', + clear: 'far fa-trash-alt', + close: 'far fa-times-circle' + }, + sideBySide: true, + keyBinds: { + up: function(widget) { }, + down: function(widget) { }, + 'control up': function(widget) { }, + 'control down': function(widget) { }, + left: function(widget) { }, + right: function(widget) { }, + pageUp: function(widget) { }, + pageDown: function(widget) { }, + enter: function(widget) { }, + escape: function(widget) { }, + 'control space': function(widget) { }, + t: function(widget) { }, + 'delete': function(widget) { } + } + }); +} +Grocy.Components.DateTimePicker2.Init(); + +Grocy.Components.DateTimePicker2.GetInputElement().on('keyup', function(e) +{ + $('.datetimepicker2').datetimepicker('hide'); + + var value = Grocy.Components.DateTimePicker2.GetValue(); + var now = new Date(); + var centuryStart = Number.parseInt(now.getFullYear().toString().substring(0, 2) + '00'); + var centuryEnd = Number.parseInt(now.getFullYear().toString().substring(0, 2) + '99'); + var format = Grocy.Components.DateTimePicker2.GetInputElement().data('format'); + var nextInputElement = $(Grocy.Components.DateTimePicker2.GetInputElement().data('next-input-selector')); + + //If input is empty and any arrow key is pressed, set date to today + if (value.length === 0 && (e.keyCode === 38 || e.keyCode === 40 || e.keyCode === 37 || e.keyCode === 39)) + { + Grocy.Components.DateTimePicker2.SetValue(moment(new Date(), format, true).format(format)); + nextInputElement.focus(); + } + else if (value === 'x' || value === 'X') + { + Grocy.Components.DateTimePicker2.SetValue(moment('2999-12-31 23:59:59').format(format)); + nextInputElement.focus(); + } + else if (value.length === 4 && !(Number.parseInt(value) > centuryStart && Number.parseInt(value) < centuryEnd)) + { + var date = moment((new Date()).getFullYear().toString() + value); + if (date.isBefore(moment())) + { + date.add(1, "year"); + } + Grocy.Components.DateTimePicker2.SetValue(date.format(format)); + nextInputElement.focus(); + } + else if (value.length === 8 && $.isNumeric(value)) + { + Grocy.Components.DateTimePicker2.SetValue(value.replace(/(\d{4})(\d{2})(\d{2})/, '$1-$2-$3')); + nextInputElement.focus(); + } + else if (value.length === 7 && $.isNumeric(value.substring(0, 6)) && (value.substring(6, 7).toLowerCase() === "e" || value.substring(6, 7).toLowerCase() === "+")) + { + var date = moment(value.substring(0, 4) + "-" + value.substring(4, 6) + "-01").endOf("month"); + Grocy.Components.DateTimePicker2.SetValue(date.format(format)); + nextInputElement.focus(); + } + else + { + var dateObj = moment(value, format, true); + if (dateObj.isValid()) + { + if (e.shiftKey) + { + // WITH shift modifier key + + if (e.keyCode === 38) // Up + { + Grocy.Components.DateTimePicker2.SetValue(dateObj.add(-1, 'months').format(format)); + } + else if (e.keyCode === 40) // Down + { + Grocy.Components.DateTimePicker2.SetValue(dateObj.add(1, 'months').format(format)); + } + else if (e.keyCode === 37) // Left + { + Grocy.Components.DateTimePicker2.SetValue(dateObj.add(-1, 'years').format(format)); + } + else if (e.keyCode === 39) // Right + { + Grocy.Components.DateTimePicker2.SetValue(dateObj.add(1, 'years').format(format)); + } + } + else + { + // WITHOUT shift modifier key + + if (e.keyCode === 38) // Up + { + Grocy.Components.DateTimePicker2.SetValue(dateObj.add(-1, 'days').format(format)); + } + else if (e.keyCode === 40) // Down + { + Grocy.Components.DateTimePicker2.SetValue(dateObj.add(1, 'days').format(format)); + } + else if (e.keyCode === 37) // Left + { + Grocy.Components.DateTimePicker2.SetValue(dateObj.add(-1, 'weeks').format(format)); + } + else if (e.keyCode === 39) // Right + { + Grocy.Components.DateTimePicker2.SetValue(dateObj.add(1, 'weeks').format(format)); + } + } + } + } + + //Custom validation + value = Grocy.Components.DateTimePicker2.GetValue(); + dateObj = moment(value, format, true); + var element = Grocy.Components.DateTimePicker2.GetInputElement()[0]; + if (!dateObj.isValid()) + { + if ($(element).hasAttr("required")) + { + element.setCustomValidity("error"); + } + } + else + { + if (Grocy.Components.DateTimePicker2.GetInputElement().data('limit-end-to-now') === true && dateObj.isAfter(moment())) + { + element.setCustomValidity("error"); + } + else if (Grocy.Components.DateTimePicker2.GetInputElement().data('limit-start-to-now') === true && dateObj.isBefore(moment())) + { + element.setCustomValidity("error"); + } + else + { + element.setCustomValidity(""); + } + + var earlierThanLimit = Grocy.Components.DateTimePicker2.GetInputElement().data("earlier-than-limit"); + if (!earlierThanLimit.isEmpty()) + { + if (moment(value).isBefore(moment(earlierThanLimit))) + { + $("#datetimepicker-earlier-than-info").removeClass("d-none"); + } + else + { + $("#datetimepicker-earlier-than-info").addClass("d-none"); + } + } + } + + // "Click" the shortcut checkbox when the shortcut value was + // entered manually and it is currently not set + var shortcutValue = $("#datetimepicker2-shortcut").data("datetimepicker2-shortcut-value"); + if (value == shortcutValue && !$("#datetimepicker2-shortcut").is(":checked")) + { + $("#datetimepicker2-shortcut").click(); + } +}); + +Grocy.Components.DateTimePicker2.GetInputElement().on('input', function(e) +{ + $('#datetimepicker-timeago').attr("datetime", Grocy.Components.DateTimePicker2.GetValue()); + EmptyElementWhenMatches('#datetimepicker-timeago', __t('timeago_nan')); + RefreshContextualTimeago("#datetimepicker2-wrapper"); +}); + +$('.datetimepicker2').on('update.datetimepicker', function(e) +{ + Grocy.Components.DateTimePicker2.GetInputElement().trigger('input'); + Grocy.Components.DateTimePicker2.GetInputElement().trigger('change'); + Grocy.Components.DateTimePicker2.GetInputElement().trigger('keypress'); +}); + +$('.datetimepicker2').on('hide.datetimepicker', function(e) +{ + Grocy.Components.DateTimePicker2.GetInputElement().trigger('input'); + Grocy.Components.DateTimePicker2.GetInputElement().trigger('change'); + Grocy.Components.DateTimePicker2.GetInputElement().trigger('keypress'); +}); + +$("#datetimepicker2-shortcut").on("click", function() +{ + if (this.checked) + { + var value = $("#datetimepicker2-shortcut").data("datetimepicker2-shortcut-value"); + Grocy.Components.DateTimePicker2.SetValue(value); + Grocy.Components.DateTimePicker2.GetInputElement().attr("readonly", ""); + $(Grocy.Components.DateTimePicker2.GetInputElement().data('next-input-selector')).focus(); + } + else + { + Grocy.Components.DateTimePicker2.SetValue(""); + Grocy.Components.DateTimePicker2.GetInputElement().removeAttr("readonly"); + Grocy.Components.DateTimePicker2.GetInputElement().focus(); + } + + Grocy.Components.DateTimePicker2.GetInputElement().trigger('input'); + Grocy.Components.DateTimePicker2.GetInputElement().trigger('change'); + Grocy.Components.DateTimePicker2.GetInputElement().trigger('keypress'); +}); diff --git a/public/viewjs/components/productamountpicker.js b/public/viewjs/components/productamountpicker.js index 0e34a587..cce11e88 100644 --- a/public/viewjs/components/productamountpicker.js +++ b/public/viewjs/components/productamountpicker.js @@ -21,20 +21,20 @@ Grocy.Components.ProductAmountPicker.Reload = function(productId, destinationQuI }); } - if (!Grocy.Components.ProductAmountPicker.InitalValueSet || forceInitialDisplayQu) + if (!Grocy.Components.ProductAmountPicker.InitialValueSet || forceInitialDisplayQu) { - $("#qu_id").val($("#qu_id").attr("data-inital-qu-id")); + $("#qu_id").val($("#qu_id").attr("data-initial-qu-id")); } - if (!Grocy.Components.ProductAmountPicker.InitalValueSet) + if (!Grocy.Components.ProductAmountPicker.InitialValueSet) { var convertedAmount = $("#display_amount").val() * $("#qu_id option:selected").attr("data-qu-factor"); $("#display_amount").val(convertedAmount); - Grocy.Components.ProductAmountPicker.InitalValueSet = true; + Grocy.Components.ProductAmountPicker.InitialValueSet = true; } - if (conversionsForProduct.length === 1) + if (conversionsForProduct.length === 1 && !forceInitialDisplayQu) { $("#qu_id").val($("#qu_id option:first").val()); } @@ -42,12 +42,12 @@ Grocy.Components.ProductAmountPicker.Reload = function(productId, destinationQuI $(".input-group-productamountpicker").trigger("change"); } -Grocy.Components.ProductAmountPicker.SetQuantityUnit = function() +Grocy.Components.ProductAmountPicker.SetQuantityUnit = function(quId) { $("#qu_id").val(quId); } -Grocy.Components.ProductAmountPicker.AllowAnyQu = function(quId) +Grocy.Components.ProductAmountPicker.AllowAnyQu = function(keepInitialQu = false) { Grocy.Components.ProductAmountPicker.AllowAnyQuEnabled = true; @@ -57,6 +57,11 @@ Grocy.Components.ProductAmountPicker.AllowAnyQu = function(quId) $("#qu_id").append(''); }); + if (keepInitialQu) + { + Grocy.Components.ProductAmountPicker.SetQuantityUnit($("#qu_id").attr("data-initial-qu-id")); + } + $(".input-group-productamountpicker").trigger("change"); } @@ -68,7 +73,7 @@ $(".input-group-productamountpicker").on("change", function() var amount = $("#display_amount").val(); var destinationAmount = amount / quFactor; - if (destinationQuName == selectedQuName || Grocy.Components.ProductAmountPicker.AllowAnyQuEnabled) + if (destinationQuName == selectedQuName || Grocy.Components.ProductAmountPicker.AllowAnyQuEnabled || amount.toString().isEmpty() || selectedQuName.toString().isEmpty()) { $("#qu-conversion-info").addClass("d-none"); } diff --git a/public/viewjs/components/productcard.js b/public/viewjs/components/productcard.js index f181127f..76117d83 100644 --- a/public/viewjs/components/productcard.js +++ b/public/viewjs/components/productcard.js @@ -15,7 +15,10 @@ Grocy.Components.ProductCard.Refresh = function(productId) $('#productcard-product-last-purchased-timeago').attr("datetime", productDetails.last_purchased || '2999-12-31'); $('#productcard-product-last-used').text((productDetails.last_used || '2999-12-31').substring(0, 10)); $('#productcard-product-last-used-timeago').attr("datetime", productDetails.last_used || '2999-12-31'); - $('#productcard-product-location').text(productDetails.location.name); + if (productDetails.location != null) + { + $('#productcard-product-location').text(productDetails.location.name); + } $('#productcard-product-spoil-rate').text((parseFloat(productDetails.spoil_rate_percent) / 100).toLocaleString(undefined, { style: "percent" })); if (productDetails.is_aggregated_amount == 1) @@ -96,7 +99,7 @@ Grocy.Components.ProductCard.Refresh = function(productId) EmptyElementWhenMatches('#productcard-product-last-purchased-timeago', __t('timeago_nan')); EmptyElementWhenMatches('#productcard-product-last-used-timeago', __t('timeago_nan')); - RefreshContextualTimeago(); + RefreshContextualTimeago(".productcard"); }, function(xhr) { diff --git a/public/viewjs/consume.js b/public/viewjs/consume.js index 2b37f23c..0994434c 100644 --- a/public/viewjs/consume.js +++ b/public/viewjs/consume.js @@ -1,24 +1,4 @@ -$(document).ready(function() { - - if (GetUriParam("embedded") !== undefined) - { - var locationId = GetUriParam('locationId'); - - if (typeof locationId === 'undefined') - { - Grocy.Components.ProductPicker.GetPicker().trigger('change'); - Grocy.Components.ProductPicker.GetInputElement().focus(); - } else { - - $("#location_id").val(locationId); - $("#location_id").trigger('change'); - $("#use_specific_stock_entry").click(); - $("#use_specific_stock_entry").trigger('change'); - } - } -}); - -$('#save-consume-button').on('click', function(e) +$('#save-consume-button').on('click', function(e) { e.preventDefault(); @@ -40,10 +20,6 @@ $('#save-consume-button').on('click', function(e) { jsonData.location_id = $("#location_id").val(); } - else - { - jsonData.location_id = 1; - } if (Grocy.FeatureFlags.GROCY_FEATURE_FLAG_RECIPES && Grocy.Components.RecipePicker.GetValue().toString().length > 0) { @@ -58,6 +34,11 @@ $('#save-consume-button').on('click', function(e) Grocy.Api.Post(apiUrl, jsonData, function(result) { + if (BoolVal(Grocy.UserSettings.scan_mode_consume_enabled)) + { + Grocy.UISound.Success(); + } + bookingResponse = result; var addBarcode = GetUriParam('addbarcodetoselection'); @@ -130,6 +111,7 @@ $('#save-consume-button').on('click', function(e) $("#location_id").find("option").remove().end().append(""); } Grocy.Components.ProductPicker.GetInputElement().focus(); + Grocy.Components.ProductCard.Refresh(jsonForm.product_id); Grocy.FrontendHelpers.ValidateForm('consume-form'); } }, @@ -265,6 +247,11 @@ $("#location_id").on('change', function(e) Grocy.Components.ProductPicker.GetPicker().on('change', function(e) { + if (BoolVal(Grocy.UserSettings.scan_mode_consume_enabled)) + { + Grocy.UISound.BarcodeScannerBeep(); + } + $("#specific_stock_entry").find("option").remove().end().append(""); if ($("#use_specific_stock_entry").is(":checked")) { @@ -284,13 +271,14 @@ Grocy.Components.ProductPicker.GetPicker().on('change', function(e) $('#amount_qu_unit').text(productDetails.quantity_unit_stock.name); $("#location_id").find("option").remove().end().append(""); - Grocy.Api.Get("stock/products/" + productId + '/locations', + Grocy.Api.Get("stock/products/" + productId + '/locations', function(stockLocations) { var setDefault = 0; stockLocations.forEach(stockLocation => { - if (productDetails.location.id == stockLocation.location_id) { + if (productDetails.location.id == stockLocation.location_id) + { $("#location_id").append($(""); $("#specific_stock_entry").attr("disabled", ""); $("#specific_stock_entry").removeAttr("required"); @@ -114,6 +103,7 @@ $('#save-transfer-button').on('click', function(e) $("#location_id_to").val(""); $("#location_id_from").val(""); Grocy.Components.ProductPicker.GetInputElement().focus(); + Grocy.Components.ProductCard.Refresh(jsonForm.product_id); Grocy.FrontendHelpers.ValidateForm('transfer-form'); } }, @@ -169,7 +159,8 @@ Grocy.Components.ProductPicker.GetPicker().on('change', function(e) { $("#location_id_from").append($("