Module: Knj::Php

Defined in:
lib/knj/php.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.php_list_defined_methodsObject



989
990
991
# File 'lib/knj/php.rb', line 989

def self.php_list_defined_methods
  return @methods
end

Instance Method Details

#array(*ele) ⇒ Object

Array-function emulator.



945
946
947
948
949
950
951
952
953
# File 'lib/knj/php.rb', line 945

def array(*ele)
  return {} if ele.length <= 0
  
  if ele.length == 1 and ele.first.is_a?(Hash)
    return ele.first
  end
  
  return ele
end

#array_key_exists(key, arr) ⇒ Object



955
956
957
958
959
960
961
962
963
964
# File 'lib/knj/php.rb', line 955

def array_key_exists(key, arr)
  if arr.is_a?(Hash)
    return arr.key?(key)
  elsif arr.is_a?(Array)
    return true if arr.index(key) != nil
    return false
  else
    raise "Unknown type of argument: '#{arr.class.name}'."
  end
end

#base64_decode(str) ⇒ Object



763
764
765
# File 'lib/knj/php.rb', line 763

def base64_decode(str)
  return Base64.decode64(str.to_s)
end

#base64_encode(str) ⇒ Object



759
760
761
# File 'lib/knj/php.rb', line 759

def base64_encode(str)
  return Base64.encode64(str.to_s)
end

#basename(filepath) ⇒ Object



750
751
752
753
754
755
756
757
# File 'lib/knj/php.rb', line 750

def basename(filepath)
  splitted = filepath.to_s.split("/").last
  return false if !splitted
  
  ret = splitted.split(".")
  ret.delete(ret.last)
  return ret.join(".")
end

#call_user_func(*paras) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/knj/php.rb', line 6

def call_user_func(*paras)
  if paras[0].is_a?(String)
    send_paras = [paras[0].to_sym]
    send_paras << paras[1] if paras[1]
    send(*send_paras)
  elsif paras[0].is_a?(Array)
    send_paras = [paras[0][1].to_sym]
    send_paras << paras[1] if paras[1]
    paras[0][0].send(*send_paras)
  else
    raise "Unknown user-func: '#{paras[0].class.name}'."
  end
end

#chdir(dirname) ⇒ Object



658
659
660
# File 'lib/knj/php.rb', line 658

def chdir(dirname)
  Dir.chdir(dirname)
end

#class_exists(classname) ⇒ Object



496
497
498
499
500
501
502
503
# File 'lib/knj/php.rb', line 496

def class_exists(classname)
  begin
    Kernel.const_get(classname)
    return true
  rescue Exception
    return false
  end
end

#count(array) ⇒ Object



678
679
680
# File 'lib/knj/php.rb', line 678

def count(array)
  return array.length
end

#date(date_format, date_input = nil) ⇒ Object



733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
# File 'lib/knj/php.rb', line 733

def date(date_format, date_input = nil)
  if date_input == nil
    date_object = Time.now
  elsif Knj::Php.is_numeric(date_input)
    date_object = Time.at(date_input.to_i)
  elsif date_input.is_a?(Knj::Datet)
    date_object = date_input.time
  elsif date_input.is_a?(Time)
    date_object = date_input
  else
    raise "Unknown date given: '#{date_input}', '#{date_input.class.name}'."
  end
  
  date_format = date_format.gsub("Y", "%Y").gsub("y", "%y").gsub("m", "%m").gsub("d", "%d").gsub("H", "%H").gsub("i", "%M").gsub("s", "%S")
  return date_object.strftime(date_format)
end

#die(msg) ⇒ Object



519
520
521
522
# File 'lib/knj/php.rb', line 519

def die(msg)
  print msg
  exit
end

#dirname(filename) ⇒ Object



654
655
656
# File 'lib/knj/php.rb', line 654

def dirname(filename)
  File.dirname(filename)
end

#echo(string) ⇒ Object



670
671
672
# File 'lib/knj/php.rb', line 670

def echo(string)
  print string
end

#empty(obj) ⇒ Object



966
967
968
969
970
971
972
# File 'lib/knj/php.rb', line 966

def empty(obj)
  if obj.respond_to?("empty?")
    return obj.empty?
  else
    raise "Dont know how to handle object on 'empty': '#{obj.class.name}'."
  end
end

#explode(expl, strexp) ⇒ Object



650
651
652
# File 'lib/knj/php.rb', line 650

def explode(expl, strexp)
  return strexp.to_s.split(expl)
end

#fclose(fp) ⇒ Object



576
577
578
# File 'lib/knj/php.rb', line 576

def fclose(fp)
  fp.close
end

#fgets(fp, length = 4096) ⇒ Object



572
573
574
# File 'lib/knj/php.rb', line 572

def fgets(fp, length = 4096)
  return fp.read(length)
end

#file_exists(filepath) ⇒ Object



442
443
444
445
# File 'lib/knj/php.rb', line 442

def file_exists(filepath)
  return true if File.exists?(filepath.to_s.untaint)
  return false
end

#file_get_contents(filepath) ⇒ Object



383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
# File 'lib/knj/php.rb', line 383

def file_get_contents(filepath)
  filepath = filepath.to_s
  
  if http_match = filepath.match(/^http(s|):\/\/([A-z_\d\.]+)(|:(\d+))(\/(.+))$/)
    if http_match[4].to_s.length > 0
      port = http_match[4].to_i
    end
    
    args = {
      "host" => http_match[2]
    }
    
    if http_match[1] == "s"
      args["ssl"] = true
      args["validate"] = false
      
      if !port
        port = 443
      end
    end
    
    args["port"] = port if port
    
    http = Knj::Http.new(args)
    data = http.get(http_match[5])
    return data["data"]
  end
  
  return File.read(filepath.untaint)
end

#file_put_contents(filepath, content) ⇒ Object



377
378
379
380
381
# File 'lib/knj/php.rb', line 377

def file_put_contents(filepath, content)
  File.open(filepath.untaint, "w") do |file|
    file.write(content)
  end
end

#fopen(filename, mode) ⇒ Object



540
541
542
543
544
545
546
# File 'lib/knj/php.rb', line 540

def fopen(filename, mode)
  begin
    return File.open(filename, mode)
  rescue Exception
    return false
  end
end

#foreach(element, &block) ⇒ Object

Foreach emulator.



915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
# File 'lib/knj/php.rb', line 915

def foreach(element, &block)
  raise "No or unsupported block given." if !block.respond_to?(:call) or !block.respond_to?(:arity)
  arity = block.arity
  
  if element.is_a?(Array)
    element.each_index do |key|
      if arity == 2
        block.call(key, element[key])
      elsif arity == 1
        block.call(element[key])
      else
        raise "Unknown arity: '#{arity}'."
      end
    end
  elsif element.is_a?(Hash)
    element.each do |key, val|
      if arity == 2
        block.call(key, val)
      elsif arity == 1
        block.call(val)
      else
        raise "Unknown arity: '#{arity}'."
      end
    end
  else
    raise "Unknown element: '#{element.class.name}'."
  end
end

#fputs(fp, str) ⇒ Object



558
559
560
561
562
563
564
565
566
# File 'lib/knj/php.rb', line 558

def fputs(fp, str)
  begin
    fp.print str
  rescue Exception
    return false
  end
  
  return true
end

#fread(fp, length = 4096) ⇒ Object



568
569
570
# File 'lib/knj/php.rb', line 568

def fread(fp, length = 4096)
  return fp.read(length)
end

#fwrite(fp, str) ⇒ Object



548
549
550
551
552
553
554
555
556
# File 'lib/knj/php.rb', line 548

def fwrite(fp, str)
  begin
    fp.print str
  rescue Exception
    return false
  end
  
  return true
end

#gettext(string) ⇒ Object



187
188
189
# File 'lib/knj/php.rb', line 187

def gettext(string)
  return GetText._(string)
end

#gtext(string) ⇒ Object



183
184
185
# File 'lib/knj/php.rb', line 183

def gtext(string)
  return GetText._(string)
end

#gzcompress(str, level = 3) ⇒ Object



879
880
881
882
883
884
885
886
887
# File 'lib/knj/php.rb', line 879

def gzcompress(str, level = 3)
  require "zlib"
  
  zstream = Zlib::Deflate.new
  gzip_str = zstream.deflate(str.to_s, Zlib::FINISH)
  zstream.close
  
  return gzip_str
end

#gzuncompress(str, length = 0) ⇒ Object



889
890
891
892
893
894
895
896
897
898
# File 'lib/knj/php.rb', line 889

def gzuncompress(str, length = 0)
  require "zlib"
  
  zstream = Zlib::Inflate.new
  plain_str = zstream.inflate(str.to_s)
  zstream.finish
  zstream.close
  
  return plain_str.to_s
end

#header(headerstr) ⇒ Object



315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
# File 'lib/knj/php.rb', line 315

def header(headerstr)
  match = headerstr.to_s.match(/(.*): (.*)/)
  if match
    key = match[1]
    value = match[2]
  else
    #HTTP/1.1 404 Not Found
    
    match_status = headerstr.to_s.match(/^HTTP\/[0-9\.]+ ([0-9]+) (.+)$/)
    if match_status
      key = "Status"
      value = match_status[1] + " " + match_status[2]
    else
      raise "Couldnt parse header."
    end
  end
  
  sent = false
  
  if Knj::Php.class_exists("Apache")
    Apache.request.headers_out[key] = value
    sent = true
  end
  
  begin
    _kas.header(key, value) #This is for knjAppServer - knj.
    sent = true
  rescue NameError => e
    if $knj_eruby
      $knj_eruby.header(key, value)
      sent = true
    elsif $cgi.class.name == "CGI"
      sent = true
      $cgi.header(key => value)
    elsif $_CGI.class.name == "CGI"
      sent = true
      $_CGI.header(key => value)
    end
  end
  
  return sent
end

#html_entity_decode(string) ⇒ Object



505
506
507
508
509
# File 'lib/knj/php.rb', line 505

def html_entity_decode(string)
  string = Knj::Web.html(string)
  string = string.gsub("&oslash;", "ø").gsub("&aelig;", "æ").gsub("&aring;", "å").gsub("&euro;", "€").gsub("#39;", "'").gsub("&amp;", "&").gsub("&gt;", ">").gsub("&lt;", "<").gsub("&quot;", '"').gsub("&#039;", "'")
  return string
end

#htmlspecialchars(string) ⇒ Object



230
231
232
# File 'lib/knj/php.rb', line 230

def htmlspecialchars(string)
  return Knj::Web.html(string)
end

#http_build_query(obj) ⇒ Object



234
235
236
# File 'lib/knj/php.rb', line 234

def http_build_query(obj)
  return self.http_build_query_rec("", obj)
end

#http_build_query_rec(orig_key, obj, first = true) ⇒ Object



238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
# File 'lib/knj/php.rb', line 238

def http_build_query_rec(orig_key, obj, first = true)
  url = ""
  first_ele = true
  
  if obj.is_a?(Array)
    ele_count = 0
    
    obj.each do |val|
      orig_key_str = "#{orig_key}[#{ele_count}]"
      val = "#<Model::#{val.table}::#{val.id}>" if val.respond_to?("is_knj?")
      
      if val.is_a?(Hash) or val.is_a?(Array)
        url << self.http_build_query_rec(orig_key_str, val, false)
      else
        url << "&" if !first or !first_ele
        url << "#{Knj::Web.urlenc(orig_key_str)}=#{Knj::Web.urlenc(val)}"
      end
      
      first_ele = false if first_ele
      ele_count += 1
    end
  elsif obj.is_a?(Hash)
    obj.each do |key, val|
      if first
        orig_key_str = key
      else
        orig_key_str = "#{orig_key}[#{key}]"
      end
      
      val = "#<Model::#{val.table}::#{val.id}>" if val.respond_to?("is_knj?")
      
      if val.is_a?(Hash) or val.is_a?(Array)
        url << self.http_build_query_rec(orig_key_str, val, false)
      else
        url << "&" if !first or !first_ele
        url << "#{Knj::Web.urlenc(orig_key_str)}=#{Knj::Web.urlenc(val)}"
      end
      
      first_ele = false if first_ele
    end
  else
    raise "Unknown class: '#{obj.class.name}'."
  end
  
  return url
end

#include_once(filename) ⇒ Object



662
663
664
# File 'lib/knj/php.rb', line 662

def include_once(filename)
  require filename
end

#ip2long(ip) ⇒ Object



803
804
805
# File 'lib/knj/php.rb', line 803

def ip2long(ip)
  return IPAddr.new(ip).to_i
end

#is_a(obj, classname) ⇒ Object



24
25
26
27
28
29
30
31
32
33
# File 'lib/knj/php.rb', line 24

def is_a(obj, classname)
  classname = classname.to_s
  classname = "#{classname[0..0].upcase}#{classname[1..999]}"
  
  if obj.is_a?(classname)
    return true
  end
  
  return false
end

#is_dir(filepath) ⇒ Object



426
427
428
429
430
431
432
433
434
435
436
# File 'lib/knj/php.rb', line 426

def is_dir(filepath)
  begin
    if File.directory?(filepath)
      return true
    end
  rescue Exception
    return false
  end
  
  return false
end

#is_file(filepath) ⇒ Object



414
415
416
417
418
419
420
421
422
423
424
# File 'lib/knj/php.rb', line 414

def is_file(filepath)
  begin
    if File.file?(filepath)
      return true
    end
  rescue Exception
    return false
  end
  
  return false
end

#is_numeric(n) ⇒ Object



4
# File 'lib/knj/php.rb', line 4

def is_numeric(n) Float n rescue false end

#isset(var) ⇒ Object



285
286
287
288
# File 'lib/knj/php.rb', line 285

def isset(var)
  return false if var == nil or var == false
  return true
end

#json_decode(data, as_array = false) ⇒ Object



692
693
694
695
696
697
698
699
700
701
702
703
704
# File 'lib/knj/php.rb', line 692

def json_decode(data, as_array = false)
  #FIXME: Should be able to return as object, which will break all projects using it without second argument...
  
  raise "String was not given to 'Knj::Php.json_decode'." if !data.is_a?(String)
  
  if Knj::Php.class_exists("Rho")
    return Rho::JSON.parse(data)        
  elsif Knj::Php.class_exists("JSON")  
    return JSON.parse(data)
  else
    raise "Could not figure out which JSON lib to use."
  end
end

#json_encode(obj) ⇒ Object



682
683
684
685
686
687
688
689
690
# File 'lib/knj/php.rb', line 682

def json_encode(obj)
  if Knj::Php.class_exists("Rho")
    return Rho::JSON.generate(obj)
  elsif Knj::Php.class_exists("JSON")
    return JSON.generate(obj)
  else
    raise "Could not figure out which JSON lib to use."
  end
end

#ksort(hash) ⇒ Object

Sort methods.



901
902
903
904
905
906
907
908
909
910
911
912
# File 'lib/knj/php.rb', line 901

def ksort(hash)
  nhash = hash.sort do |a, b|
    a[0] <=> b[0]
  end
  
  newhash = {}
  nhash.each do |val|
    newhash[val[0]] = val[1][0]
  end
  
  return newhash
end

#long2ip(long) ⇒ Object

Thanks to this link for the following functions: snippets.dzone.com/posts/show/4509



869
870
871
872
873
874
875
876
877
# File 'lib/knj/php.rb', line 869

def long2ip(long)
  ip = []
  4.times do |i|
    ip.push(long.to_i & 255)
    long = long.to_i >> 8
  end
  
  ip.reverse.join(".")
end

#md5(string) ⇒ Object



310
311
312
313
# File 'lib/knj/php.rb', line 310

def md5(string)
  require "digest"
  return Digest::MD5.hexdigest(string.to_s)
end

#memory_get_peak_usageObject

Should return the peak usage of the running script, but I have found no way to detect this… Instead returns the currently memory usage.



799
800
801
# File 'lib/knj/php.rb', line 799

def memory_get_peak_usage
  return self.memory_get_usage
end

#memory_get_usageObject

Returns the scripts current memory usage.



792
793
794
795
796
# File 'lib/knj/php.rb', line 792

def memory_get_usage
  # FIXME: This only works on Linux at the moment, since we are doing this by command line - knj.
  memory_usage = `ps -o rss= -p #{Process.pid}`.to_i * 1024
  return memory_usage
end

#method_exists(obj, method_name) ⇒ Object



20
21
22
# File 'lib/knj/php.rb', line 20

def method_exists(obj, method_name)
  return obj.respond_to?(method_name.to_s)
end

#microtime(get_as_float = false) ⇒ Object



710
711
712
713
714
715
716
717
# File 'lib/knj/php.rb', line 710

def microtime(get_as_float = false)
  microtime = Time.now.to_f
  
  return microtime if get_as_float
  
  splitted = microtime.to_s.split(",")
  return "#{splitted[0]} #{splitted[1]}"
end

#mktime(hour = nil, min = nil, sec = nil, date = nil, month = nil, year = nil, is_dst = -1)) ⇒ Object



719
720
721
722
723
724
725
726
727
728
729
730
731
# File 'lib/knj/php.rb', line 719

def mktime(hour = nil, min = nil, sec = nil, date = nil, month = nil, year = nil, is_dst = -1)
  cur_time = Time.new
  
  hour = cur_time.hour if hour == nil
  min = cur_time.min if min == nil
  sec = cur_time.sec if sec == nil
  date = cur_time.date if date == nil
  month = cur_time.month if month == nil
  year = cur_time.year if year == nil
  
  new_time = Knj::Datet.in("#{year.to_s}-#{month.to_s}-#{date.to_s} #{hour.to_s}:#{min.to_s}:#{sec.to_s}")
  return new_time.to_i
end

#move_uploaded_file(tmp_path, new_path) ⇒ Object



580
581
582
# File 'lib/knj/php.rb', line 580

def move_uploaded_file(tmp_path, new_path)
  FileUtils.mv(tmp_path.untaint, new_path.untaint)
end

#msgbox(title, msg, type) ⇒ Object



674
675
676
# File 'lib/knj/php.rb', line 674

def msgbox(title, msg, type)
  Knj::Gtk2.msgbox(msg, type, title)
end

#nl2br(string) ⇒ Object



358
359
360
# File 'lib/knj/php.rb', line 358

def nl2br(string)
  return string.to_s.gsub("\n", "<br />\n")
end

#number_format(number, precision = 2, seperator = ".", delimiter = ",") ⇒ Object

Returns the number as a formatted string.



192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# File 'lib/knj/php.rb', line 192

def number_format(number, precision = 2, seperator = ".", delimiter = ",")
  number = number.to_f if !number.is_a?(Float)
  precision = precision.to_i
  return sprintf("%.#{precision.to_s}f", number).gsub(".", seperator) if number < 1 and number > -1
  
  number = sprintf("%.#{precision.to_s}f", number).split(".")
  
  str = ""
  number[0].reverse.scan(/(.{1,3})/) do |match|
    if match[0] == "-"
      #This happens if the number is a negative number and we have reaches the minus-sign.
      str << match[0]
    else
      str << delimiter if str.length > 0
      str << match[0]
    end
  end
  
  str = str.reverse
  if precision > 0
    str << "#{seperator}#{number[1]}"
  end
  
  return str
end

#opendir(dirpath) ⇒ Object



524
525
526
527
528
529
530
531
# File 'lib/knj/php.rb', line 524

def opendir(dirpath)
  res = {:files => [], :index => 0}
  Dir.foreach(dirpath) do |file|
    res[:files] << file
  end
  
  return res
end

#parse_str(str, hash) ⇒ Object



370
371
372
373
374
375
# File 'lib/knj/php.rb', line 370

def parse_str(str, hash)
  res = Knj::Web.parse_urlquery(str, {:urldecode => true})
  res.each do |key, val|
    hash[key] = val
  end
end

#passthru(cmd) ⇒ Object

Execute an external program and display raw output.



808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
# File 'lib/knj/php.rb', line 808

def passthru(cmd)
  if RUBY_ENGINE == "jruby"
    IO.popen4(cmd) do |pid, stdin, stdout, stderr|
      tout = Thread.new do
        begin
          stdout.sync = true
          stdout.each do |str|
            $stdout.print str
          end
        rescue Exception => e
          $stdout.print Knj::Errors.error_str(e)
        end
      end
      
      terr = Thread.new do
        begin
          stderr.sync = true
          stderr.each do |str|
            $stderr.print str
          end
        rescue Exception => e
          $stderr.print Knj::Errors.error_str(e)
        end
      end
      
      tout.join
      terr.join
    end
  else
    Open3.popen3(cmd) do |stdin, stdout, stderr|
      tout = Thread.new do
        begin
          stdout.sync = true
          stdout.each do |str|
            $stdout.print str
          end
        rescue Exception => e
          $stdout.print Knj::Errors.error_str(e)
        end
      end
      
      terr = Thread.new do
        begin
          stderr.sync = true
          stderr.each do |str|
            $stderr.print str
          end
        rescue Exception => e
          $stderr.print Knj::Errors.error_str(e)
        end
      end
      
      tout.join
      terr.join
    end
  end
  
  return nil
end

#pathinfo(filepath) ⇒ Object



767
768
769
770
771
772
773
774
775
776
777
778
779
# File 'lib/knj/php.rb', line 767

def pathinfo(filepath)
  filepath = filepath.to_s
  
  dirname = File.dirname(filepath)
  dirname = "" if dirname == "."
  
  return {
    "dirname" => dirname,
    "basename" => self.basename(filepath),
    "extension" => filepath.split(".").last,
    "filename" => filepath.split("/").last
  }
end


35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# File 'lib/knj/php.rb', line 35

def print_r(argument, ret = false, count = 1)
  retstr = ""
  cstr = argument.class.to_s
  supercl = argument.class.superclass
  superstr = supercl.to_s if supercl
  
  if (Knj.const_defined?(:Datarow_custom) and argument.is_a?(Knj::Datarow_custom)) or argument.is_a?(Hash) or supercl.is_a?(Hash) or cstr == "Knj::Hash_methods" or cstr == "Knjappserver::Session_accessor" or cstr == "SQLite3::ResultSet::HashWithTypes" or cstr == "CGI" or cstr == "Knj::Db_row" or cstr == "Knj::Datarow" or cstr == "Apache::Table" or superstr == "Knj::Db_row" or superstr == "Knj::Datarow" or superstr == "Knj::Datarow_custom" or argument.respond_to?(:to_hash)
    if argument.respond_to?(:to_hash)
      argument_use = argument.to_hash
    else
      argument_use = argument
    end
    
    retstr << argument.class.to_s + "{\n"
    argument_use.each do |pair|
      i = 0
      while(i < count)
        retstr << "   "
        i += 1
      end
      
      if pair[0].is_a?(Symbol)
        keystr = ":#{pair[0].to_s}"
      else
        keystr = pair[0].to_s
      end
      
      retstr << "[#{keystr}] => "
      retstr << print_r(pair[1], true, count + 1).to_s
    end
    
    i = 0
    while(i < count - 1)
      retstr << "   "
      i += 1
    end
    
    retstr << "}\n"
  elsif cstr == "Dictionary"
    retstr << argument.class.to_s + "{\n"
    argument.each do |key, val|
      i = 0
      while(i < count)
        retstr << "   "
        i += 1
      end
      
      if key.is_a?(Symbol)
        keystr = ":#{key.to_s}"
      else
        keystr = key.to_s
      end
      
      retstr << "[#{keystr}] => "
      retstr << Knj::Php.print_r(val, true, count + 1).to_s
    end
    
    i = 0
    while(i < count - 1)
      retstr << "   "
      i += 1
    end
    
    retstr << "}\n"
  elsif argument.is_a?(MatchData) or argument.is_a?(Array) or cstr == "Array" or supercl.is_a?(Array)
    retstr << argument.class.to_s + "{\n"
    
    arr_count = 0
    argument.to_a.each do |i|
      i_spaces = 0
      while(i_spaces < count)
        retstr << "   "
        i_spaces += 1
      end
      
      retstr << "[" + arr_count.to_s + "] => "
      retstr << print_r(i, true, count + 1).to_s
      arr_count += 1
    end
    
    i_spaces = 0
    while(i_spaces < count - 1)
      retstr << "   "
      i_spaces += 1
    end
    
    retstr << "}\n"
  elsif cstr == "WEBrick::HTTPUtils::FormData"
    retstr << "{#{argument.class.to_s}}"
  elsif argument.is_a?(String) or argument.is_a?(Integer) or argument.is_a?(Fixnum) or argument.is_a?(Float)
    retstr << argument.to_s + "\n"
  elsif argument.is_a?(Symbol)
    retstr << ":#{argument.to_s}\n"
  elsif argument.is_a?(Exception)
    retstr << "#\{#{argument.class.to_s}: #{argument.message}}\n"
  elsif cstr == "Knj::Unix_proc"
    retstr << "#{argument.class.to_s}::data - "
    retstr << print_r(argument.data, true, count).to_s
  elsif cstr == "Thread"
    retstr << "#{argument.class.to_s} - "
    
    hash = {}
    argument.keys.each do |key|
      hash[key] = argument[key]
    end
    
    retstr << print_r(hash, true, count).to_s
  elsif cstr == "Class"
    retstr << "#{argument.class.to_s} - "
    hash = {"name" => argument.name}
    retstr << print_r(hash, true, count).to_s
  elsif cstr == "URI::Generic"
    retstr << "#{argument.class.to_s}{\n"
    methods = [:host, :port, :scheme, :path]
    count += 1
    methods.each do |method|
      i_spaces = 0
      while(i_spaces < count - 1)
        retstr << "   "
        i_spaces += 1
      end
      
      retstr << "#{method}: #{argument.send(method)}\n"
    end
    
    count -= 1
    
    i = 0
    while(i < count - 1)
      retstr << "   "
      i += 1
    end
    
    retstr << "}\n"
  elsif cstr == "Time"
    retstr << "Time::#{argument.year}-#{argument.month}-#{argument.day} #{argument.hour}:#{argument.min}:#{argument.sec}\n"
  else
    #print argument.to_s, "\n"
    retstr << "Unknown class: '#{cstr}' with superclass '#{supercl}'.\n"
  end
  
  if ret.is_a?(TrueClass)
    return retstr
  else
    print retstr
  end
end

#readdir(res) ⇒ Object



533
534
535
536
537
538
# File 'lib/knj/php.rb', line 533

def readdir(res)
  ret = res[:files][res[:index]] if res[:files].index(res[:index]) != nil
  return false if !ret
  res[:index] += 1
  return ret
end

#realpath(pname) ⇒ Object



781
782
783
784
785
786
787
788
789
# File 'lib/knj/php.rb', line 781

def realpath(pname)
  require "pathname"
  
  begin
    return Pathname.new(pname.to_s).realpath.to_s
  rescue => e
    return false
  end
end

#require_once(filename) ⇒ Object



666
667
668
# File 'lib/knj/php.rb', line 666

def require_once(filename)
  require filename
end

#serialize(argument) ⇒ Object



978
979
980
981
# File 'lib/knj/php.rb', line 978

def serialize(argument)
  require "php_serialize" #gem: php-serialize
  return PHP.serialize(argument)
end

#session_startObject

This method is only here for convertion support - it doesnt do anything.



646
647
648
# File 'lib/knj/php.rb', line 646

def session_start
  
end

#setcookie(cname, cvalue, expire = nil, domain = nil) ⇒ Object



625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
# File 'lib/knj/php.rb', line 625

def setcookie(cname, cvalue, expire = nil, domain = nil)
  args = {
    "name" => cname,
    "value" => cvalue,
    "path" => "/"
  }
  args["expires"] = Time.at(expire) if expire
  args["domain"] = domain if domain
  
  begin
    _kas.cookie(args)
  rescue NameError
    cookie = CGI::Cookie.new(args)
    status = Knj::Php.header("Set-Cookie: #{cookie.to_s}")
    $_COOKIE[cname] = cvalue if $_COOKIE
  end
  
  return status
end

#strip_tags(htmlstr) ⇒ Object



511
512
513
514
515
516
517
# File 'lib/knj/php.rb', line 511

def strip_tags(htmlstr)
  htmlstr.scan(/(<([\/A-z]+).*?>)/) do |match|
    htmlstr = htmlstr.gsub(match[0], "")
  end
  
  return htmlstr.gsub("&nbsp;", " ")
end

#strpos(haystack, needle) ⇒ Object



290
291
292
293
294
# File 'lib/knj/php.rb', line 290

def strpos(haystack, needle)
  return false if !haystack
  return false if !haystack.to_s.include?(needle)
  return haystack.index(needle)
end

#strtolower(str) ⇒ Object



226
227
228
# File 'lib/knj/php.rb', line 226

def strtolower(str)
  return str.to_s.downcase
end

#strtotime(date_string, cur = nil) ⇒ Object



447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
# File 'lib/knj/php.rb', line 447

def strtotime(date_string, cur = nil)
  if !cur
    cur = Time.new
  else
    cur = Time.at(cur)
  end
  
  date_string = date_string.to_s.downcase
  
  if date_string.match(/[0-9]+-[0-9]+-[0-9]+/i)
    begin
      return Time.local(*ParseDate.parsedate(date_string)).to_i
    rescue
      return 0
    end
  end
  
  date_string.scan(/((\+|-)([0-9]+) (\S+))/) do |match|
    timestr = match[3]
    number = match[2].to_i
    mathval = match[1]
    add = nil
    
    if timestr == "years" or timestr == "year"
      add = ((number.to_i * 3600) * 24) * 365
    elsif timestr == "months" or timestr == "month"
      add = ((number.to_i * 3600) * 24) * 30
    elsif timestr == "weeks" or timestr == "week"
      add = (number.to_i * 3600) * 24 * 7
    elsif timestr == "days" or timestr == "day"
      add = (number.to_i * 3600) * 24
    elsif timestr == "hours" or timestr == "hour"
      add = number.to_i * 3600
    elsif timestr == "minutes" or timestr == "minute" or timestr == "min" or timestr == "mints"
      add = number.to_i * 60
    elsif timestr == "seconds" or timestr == "second" or timestr == "sec" or timestr == "secs"
      add = number.to_i
    end
    
    if mathval == "+"
      cur += add
    elsif mathval == "-"
      cur -= add
    end
  end
  
  return cur.to_i
end

#strtoupper(str) ⇒ Object



222
223
224
# File 'lib/knj/php.rb', line 222

def strtoupper(str)
  return str.to_s.upcase
end

#substr(string, from, to = nil) ⇒ Object



296
297
298
299
300
301
302
303
304
305
306
307
308
# File 'lib/knj/php.rb', line 296

def substr(string, from, to = nil)
  if to == nil
    to = string.length
  end
  
  string = "#{string[from.to_i, to.to_i]}"
  
  if !string.valid_encoding? and Knj::Php.class_exists("Iconv")
    string = Iconv.conv("UTF-8//IGNORE", "UTF-8", "#{string}  ")[0..-2]
  end
  
  return string
end

#timeObject



706
707
708
# File 'lib/knj/php.rb', line 706

def time
  return Time.now.to_i
end

#trim(argument) ⇒ Object



974
975
976
# File 'lib/knj/php.rb', line 974

def trim(argument)
  return argument.to_s.strip
end

#ucwords(string) ⇒ Object



218
219
220
# File 'lib/knj/php.rb', line 218

def ucwords(string)
  return string.to_s.split(" ").select {|w| w.capitalize! || w }.join(" ")
end


438
439
440
# File 'lib/knj/php.rb', line 438

def unlink(filepath)
  FileUtils.rm(filepath)
end

#unserialize(argument) ⇒ Object



983
984
985
986
# File 'lib/knj/php.rb', line 983

def unserialize(argument)
  require "php_serialize" #gem: php-serialize
  return PHP.unserialize(argument.to_s)
end

#urldecode(string) ⇒ Object



362
363
364
# File 'lib/knj/php.rb', line 362

def urldecode(string)
  return Knj::Web.urldec(string)
end

#urlencode(string) ⇒ Object



366
367
368
# File 'lib/knj/php.rb', line 366

def urlencode(string)
  return Knj::Web.urlenc(string)
end

#utf8_decode(str) ⇒ Object



604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
# File 'lib/knj/php.rb', line 604

def utf8_decode(str)
  str = str.to_s if str.respond_to?(:to_s)
  require "iconv" if RUBY_PLATFORM == "java" #This fixes a bug in JRuby where Iconv otherwise would not be detected.
  
  if str.respond_to?(:encode)
    begin
      return str.encode("utf-8", "iso-8859-1")
    rescue Encoding::InvalidByteSequenceError
      #ignore - try iconv
    end
  end
  
  require "iconv"
    
  begin
    return Iconv.conv("utf-8", "iso-8859-1", str.to_s)
  rescue
    return Iconv.conv("utf-8//ignore", "iso-8859-1", str.to_s)
  end
end

#utf8_encode(str) ⇒ Object



584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
# File 'lib/knj/php.rb', line 584

def utf8_encode(str)
  str = str.to_s if str.respond_to?("to_s")
  
  if str.respond_to?("encode")
    begin
      return str.encode("iso-8859-1", "utf-8")
    rescue Encoding::InvalidByteSequenceError
      #ignore - try iconv
    end
  end
  
  require "iconv"
  
  begin
    return Iconv.conv("iso-8859-1", "utf-8", str.to_s)
  rescue
    return Iconv.conv("iso-8859-1//ignore", "utf-8", "#{str}  ").slice(0..-2)
  end
end