Result from onlinephp.io (link w/ code):
float(0.5350112915039062)
float(0.308990478515625)
float(0.5180835723876953)
float(0.2639293670654297)
float(0.5099773406982422)| <?php | |
| // Copyright 2026 Diego Garcia | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // | |
| // http://www.apache.org/licenses/LICENSE-2.0 | |
| // |
| <?php | |
| #[Attribute(Attribute::TARGET_PROPERTY)] | |
| class Column | |
| { | |
| public function __construct( | |
| public ?string $name = null | |
| ) {} | |
| } |
| <?php | |
| function bc(string $exp): string | |
| { | |
| $stack = []; | |
| $tokens = explode(' ', $exp); | |
| foreach ($tokens as $token) { | |
| if (strlen($token) <= 0) continue; | |
| #!/bin/env bash | |
| set -e | |
| DOWNLOAD_URL='https://go.dev/dl/go1.25.1.linux-amd64.tar.gz' | |
| # goM.mm.ff.linux-amd64.tar.gz | |
| GOLANG_TAR_GZ="$(basename $DOWNLOAD_URL)" | |
| # goM.mm.ff.linux-amd64 | |
| GOLANG="$(basename $GOLANG_TAR_GZ .tar.gz)" |
Result from onlinephp.io (link w/ code):
float(0.5350112915039062)
float(0.308990478515625)
float(0.5180835723876953)
float(0.2639293670654297)
float(0.5099773406982422)| <?php | |
| function unwrapE(float $value) | |
| { | |
| $strVal = strval($value); | |
| if (!str_contains($strVal, 'E')) { | |
| return $strVal; | |
| } | |
| for ign in $(find . -name '.gitkeep' ! -path './vendor/*'); do | |
| if [[ $(ls $(dirname $ign) | wc -l | tr -d ' ') > 0 ]]; then | |
| rm $ign | |
| fi; | |
| done |
| <?php | |
| function LOGOP($value, ?string $identifier = null) | |
| { | |
| echo 'LOGOP'; | |
| echo $identifier ? "($identifier)" : ''; | |
| echo ': ' . (string) $value . "\n"; | |
| return $value; | |
| } |
| function easyCreateElement(name, attrs = {}) { | |
| const el = document.createElement(name); | |
| for (const [k, v] of Object.entries(attrs)) { | |
| el.setAttribute(k, v instanceof Element ? v.getAttribute(k) : k); | |
| } | |
| return el; | |
| } |
| # If installed throught `pecl install xdebug` | |
| # zend_extension="<php lib path [/opt/local/lib/php]>/extensions/no-debug-zts-20240924/xdebug.so" | |
| [XDebug] | |
| # -- Debugging | |
| xdebug.mode="debug" | |
| xdebug.start_with_request="trigger" | |
| # -- Profilling | |
| # xdebug.mode="profile" |