Skip to content

Instantly share code, notes, and snippets.

@krmgns
krmgns / nö.php
Created November 12, 2019 16:25
nö!
<?php
// ok, cos converted to ?int = null, right?
function foo(int $i = null) {}
// ok, all ok, right?
$a = new class {
public $i;
public function check(): bool {
return ($this->i != null);
}
@krmgns
krmgns / uninitialized stuff
Created November 13, 2019 18:27
uninitialized
// Java
class Foo { Integer i; }
class Test {
public static void main(String args[]) {
System.out.println(new Foo().i == null);
}
}
// JavaScript
@krmgns
krmgns / Uninitialized typed properties.bug
Last active November 22, 2019 21:07
php bugreport that was gone spam
Link: https://bugs.php.net/bug.php?id=78809
---
Uninitialized typed properties
While throwing when try to access to any uninitialized typed property (eg: $o->x == null),
the codes below are just causing notice.
BTW, error message is so weird. We were expecting something like this;
@krmgns
krmgns / Uninitialized typed properties 2.bug
Created November 22, 2019 21:08
Weird behavior with uninitialized typed properties and __set/__get
Link: https://bugs.php.net/bug.php?id=78859
---
Weird behavior with uninitialized typed properties and __set/__get
Seems calling a constructor is triggering __set magic for uninitialized typed properties. So it does not matter the property is public or private/protected.
I suppose the problem is __set/__get called before __construct when a type is given to a property. Also I if remove __get then I get object(acme\Options)#1 (1) { ["stack"]=> array(1) { ["stack"]=> array(1) { ["one"]=> int(1) } } }.
@krmgns
krmgns / Uninitialized typed properties 3.bug
Last active December 4, 2019 17:44
Another "uninitialized" thing..
$foo = new class() {
var ?array $a;
function dump() { var_dump($this->a); }
function sort() { ksort($this->a); }
};
// E1: Error: Typed property class@anonymous::$a must not be accessed before initialization
$foo->dump();
// E2: TypeError: ksort() expects parameter 1 to be array, null given (should throw E1 cos its an uninitialized property?)
@krmgns
krmgns / Uninitialized typed properties 4.bug
Created December 8, 2019 22:05
Another "uninitialized" thing..
class A { protected int $x; }
class AA extends A { protected $x; }
// -> PHP Fatal error: Type of acme\AA::$ must be int (as in class acme\A)
No var name here "acme\AA::$".
@krmgns
krmgns / convert_base.js
Created December 13, 2020 04:10
convert_base.js
function convert_base(input, fromBase, toBase)
{
const chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
if (typeof fromBase == 'number') {
if (fromBase < 2 || fromBase > 62) {
throw ('Invalid base for from chars, min=2 & max=62')
}
fromBase = chars.substr(0, fromBase)
@krmgns
krmgns / each.php
Last active October 28, 2022 09:47
Polyfill for "each" function that was removed as of PHP/8
<?php
if (!function_exists('each')) {
function each(array &$array) {
$value = current($array);
$key = key($array);
if (is_null($key)) {
return false;
}
@krmgns
krmgns / birthday_paradox.js
Created March 4, 2021 11:35
Birthday paradox.
// https://betterexplained.com/examples/birthday/birthday.html
function calc(people) {
let ret = {
days: 365,
people: people
}
ret.combinations = ret.people * (ret.people - 1) / 2
ret.chance = (ret.days - 1) / ret.days
ret.expected = 1 - (ret.chance ** ret.combinations)
@krmgns
krmgns / intdiv.php
Last active March 15, 2021 11:50
intdiv samples & polyfill.
<?php
// https://github.com/itchyny/gojq#difference-to-jq
$intdiv = fn($x, $y) => ($x - $x % $y) / $y;
// polyfill
if (!function_exists('intdiv')) {
function intdiv($x, $y) {
return ($x - $x % $y) / $y;
}
}