PHP-to-Javascript
PHP-to-Javascript copied to clipboard
php to javascript converter
Results
2
PHP-to-Javascript issues
Sort by
recently updated
recently updated
newest added
```php interface Int1{} interface Int2{} class Foo implements Int1,Int2{} $foo = new Foo(); $foo instanceof Int1;//this is false ```
bug
help wanted
```php namespace nam1{ use nam2\Foo2; class Foo1{ function getFooFromFoo2(){ //here is dependency for Foo2 return Foo2::foo; } } } namespace nam2{ use nam1\Foo1; //in extend is dependency for Foo1 class...
bug