Showing posts with label yml. Show all posts
Showing posts with label yml. Show all posts

Friday, June 8, 2012

Doctrine Schema: float(18,4) ?

Use decimal instead of float in this situation:

    sale_price_eur:
      type: decimal(18)
      scale: 4

Tuesday, February 21, 2012

Parse YML (Yaml) Files In Action in Symfony

$myarray = sfYaml::load(sfConfig::get('sf_config_dir').'/myconf.yml');