Skip to content

version 1.5.2 php component csv released

I am happy to announce the release of 1.5.3 of bazzlines csv component for php.
Important changes are:
Since Version 1.5.2

Since Version 1.5.1

  • updated dependency

Since Version 1.5.0

Since Version 1.4.0

  • started cli example to easy up usage
  • added "rewind" call when using reader::readAll() and reader::readMany()

version 1.3.0. php component csv released

I am happy to announce the release of 1.3.0 of bazzlines csv component for php.
Important changes are:
Since Version 1.3.0

  • added headline output support as keys for Reader::readMany()
  • added headline output support as keys for Reader::readOne()
    • can be disabled by Reader::disableAddHeadlineToOutput()
    • can be enabled by Reader::enableAddHeadlineToOutput()
    • is enabled by default
  • fixed broken unit test for php 5.3
  • moved complex array combine into own project
  • removed duplicated code in Reader

Since Version 1.2.0

Since Version 1.1.0

  • added link to api
  • added minimum php version requirement
  • implemented "move($path)" method into Writer
  • removed "TODO"
  • updated dependencies

php - debug soap client

If you are using the native php soap client, just enable the trace mechanims and use the build in methods.

array_push($options, array('trace' => 1)); $myPhpSoapClient = new SoapClient($urlToWSDL, $options);
Use a logger for the output or add it at least as hidden value in your output. PHP independent works best with a sniffer tool like wireshark

tool - php 5.4

Since the PHP 5.3 update nightmare, i will wait a while before i update my version. But all in all there are three cool features inside, traits, short array syntax and DTrace. Since DTrace is something for "when my development sever is ready to run", short array syntax and traits are ready to use.

Short array syntax is pretty nice. $foobar = ['foo' => 'bar']; And traits, well we will see if it is good to use ore not. I like the fact that you can easily define one method and use it where you want. So it is more or less an interface with implementation. I will spare you from the general Singleton example here ;-). But i can recommend the following links if you want to know more. Whats new in php 5.4.0 traits Migration from 5.3.x to 5.4.x