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!
- Host: GitHub
- URL: https://github.com/hajimehoshi/ruby-php
- Owner: hajimehoshi
- Created: 2009-07-19T13:48:48.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2009-07-19T17:09:14.000Z (about 16 years ago)
- Last Synced: 2025-02-11T23:57:54.763Z (8 months ago)
- Language: Ruby
- Homepage:
- Size: 74.2 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
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