0.0
No commit activity in last 3 years
No release in over 3 years
Spawns a PHP process and proxies calls to it, making it possible to proxy objects and more.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.0.0
~> 1.8.3
~> 3.12
~> 2.8.0

Runtime

 Project Readme

Code Climate Test Coverage Build Status

PhpProcess

This project helps developers use PHP libraries or extensions directly from Ruby. It was originally made in order to allow me to use the exellent PHPExcel directly in Ruby, but it can be used with any library or extension.

It works by spawning a PHP-process and then manipulating that to execute commands. For that reason there is an overhead by using it.

Here is a small example:

require "rubygems"
require "php_process"

PhpProcess.new do |php|
  php.func("require_once", "#{File.dirname(__FILE__)}/PHPExcel/PHPExcel.php")
  objPHPExcel = php.new("PHPExcel")

  objPHPExcel.getProperties.setCreator("Kasper Johansen")
  objPHPExcel.getProperties.setLastModifiedBy("Kasper Johansen")
  objPHPExcel.getProperties.setTitle("Office 2007 XLSX Test Document")
  objPHPExcel.getProperties.setSubject("Office 2007 XLSX Test Document")
  objPHPExcel.getProperties.setDescription("Test document for Office 2007 XLSX, generated using PHP classes.")

  objPHPExcel.setActiveSheetIndex(0)
  objPHPExcel.getActiveSheet.SetCellValue('A1', 'Hello')
  objPHPExcel.getActiveSheet.SetCellValue('B2', 'world!')
  objPHPExcel.getActiveSheet.SetCellValue('C1', 'Hello')
  objPHPExcel.getActiveSheet.SetCellValue('D2', 'world!')

  objPHPExcel.getActiveSheet.setTitle('Simple')

  objWriter = php.new("PHPExcel_Writer_Excel2007", objPHPExcel)
  objWriter.save(__FILE__.gsub(".rb", ".xlsx"))
end

#Usage

Using a custom path for PHP CLI

PhpProcess.new(cmd_php: "some/path/php") do |php|

Eval'ing PHP-code

number = php.eval("return 5")

Getting and calling instances of objects.

instance = php.new(:ClassName, "FirstArgument")
result = instance.someMethod("AnArgument")

Calling static methods.

php.static(:ClassName, :methodName, "firstArgumentForMethodInPHP")

Calling functions.

image = php.func("ImageCreateFromJPEG", "file_name.jpeg")
php.func("ImageJPEG", image, "new_file.jpeg", 85)

Setting variables on objects.

instance.__set_var(:varName, "varValue")
instance.__get_var(:varName).should eq "varValue"

Getting constants.

Calling constants this way will cache them on the Ruby side. We don't expect them to change.

php.constant_val("CONSTANT_NAME")

Defining constants.

php.func("define", "TEST_CONSTANT", 5)

Contributing to php_process

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
  • Fork the project.
  • Start a feature/bugfix branch.
  • Commit and push until you are happy with your contribution.
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright

Copyright (c) 2012 Kasper Johansen. See LICENSE.txt for further details.