An open API service indexing awesome lists of open source software.

https://github.com/hajimehoshi/ruby-php

Let's use PHP's == operator in Ruby!
https://github.com/hajimehoshi/ruby-php

Last synced: 6 months ago
JSON representation

Let's use PHP's == operator in Ruby!

Awesome Lists containing this project

README

          

* What is this

A library to use PHP's == operator in Ruby.

* How to use

Add following line to your Ruby script:

require 'php'

* Example

p 42 == '42' # => false
require 'php'
p 42 == '42' # => true

* Author

Hajime Hoshi