IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Symfony PHP Discussion :

Calcul de durée entre 2 heures (debut et fin) dans une application Symfony [2.x]


Sujet :

Symfony PHP

  1. #1
    Membre du Club
    Homme Profil pro
    Chercheur en informatique
    Inscrit en
    Juillet 2015
    Messages
    53
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Mali

    Informations professionnelles :
    Activité : Chercheur en informatique
    Secteur : Conseil

    Informations forums :
    Inscription : Juillet 2015
    Messages : 53
    Points : 53
    Points
    53
    Par défaut Calcul de durée entre 2 heures (debut et fin) dans une application Symfony
    bonjour maintenant mon application marche bien grace à vous mais le seul soucis maintenant c'est que j'arrive pas a calculer la durée au niveau de l'intervention entre l'heure de fin et celle du debut
    voilà mon intervention.php au niveau du getDureeIntervention j'ai appliqué le diff mais ça genère des erreurs
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    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
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    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
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    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
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    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
     
         <?php
    namespace MyApp\DebutantProgBundle\Entity; 
    use Doctrine\ORM\Mapping as ORM; 
    use Symfony\Component\Validator\Constraints as Assert;
    /**
     * @ORM\Entity
     */
    class Intervention
    {
        /**
         * @ORM\GeneratedValue
         * @ORM\Id
         * @ORM\Column(type="integer")
         */
        private $id;
     
    	/**
    	 * @ORM\Column(type="date")
         */
    	 protected $dateIntervention;
     
        /**
         * @ORM\Column(type="text")
         */    
    	 protected $typeIntervention;
     
        /**
         * @ORM\Column(type="text")
         */    
        protected $libelleIntervention;
    	/**
    	*@ORM\ManyToOne(targetEntity="Technicien")
    	*/
    	public $technicien;
     
    	/**
         * @ORM\Column(type="string",length=45)
         */    
        protected $lieuIntervention;
    	 /**
    	 * @ORM\Column(type="time")   
    	 */
        protected $HeureDebut;	 
     
    	 /**   
    	 * @ORM\Column(type="time")    
    	 */ 
        protected $HeureFin;
    	/**   
    	 * @ORM\Column(type="time")    
    	 */ 
        protected $DureeIntervention;
     
    	/**
         * @ORM\Column(type="text")
         */    
        protected $Observation;
    	/**
    	*@ORM\ManyToOne(targetEntity="Projet")
    	*/ 
    	protected $liaisonProjet;
     
     
        /**
         * Get id
         *
         * @return integer 
         */
        public function getId()
        {
            return $this->id;
        }
     
        /**
         * Set dateIntervention
         *
         * @param \DateTime $dateIntervention
         * @return Intervention
         */
        public function setDateIntervention($dateIntervention)
        {
            $this->dateIntervention = $dateIntervention;
     
            return $this;
        }
     
        /**
         * Get dateIntervention
         *
         * @return \DateTime 
         */
        public function getDateIntervention()
        {
            return $this->dateIntervention;
        }
     
        /**
         * Set libelleIntervention
         *
         * @param string $libelleIntervention
         * @return Intervention
         */
        public function setLibelleIntervention($libelleIntervention)
        {
            $this->libelleIntervention = $libelleIntervention;
     
            return $this;
        }
     
        /**
         * Get libelleIntervention
         *
         * @return string 
         */
        public function getLibelleIntervention()
        {
            return $this->libelleIntervention;
        }
     
        /**
         * Set lieuIntervention
         *
         * @param string $lieuIntervention
         * @return Intervention
         */
        public function setLieuIntervention($lieuIntervention)
        {
            $this->lieuIntervention = $lieuIntervention;
     
            return $this;
        }
     
        /**
         * Get lieuIntervention
         *
         * @return string 
         */
        public function getLieuIntervention()
        {
            return $this->lieuIntervention;
        }
     
        /**
         * Set HeureDebut
         *
         * @param \DateTime $heureDebut
         * @return Intervention
         */
        public function setHeureDebut($heureDebut)
        {
            $this->HeureDebut = $heureDebut;
     
            return $this;
        }
     
        /**
         * Get HeureDebut
         *
         * @return \DateTime 
         */
        public function getHeureDebut()
        {
            return $this->HeureDebut;
        }
     
        /**
         * Set HeureFin
         *
         * @param \DateTime $heureFin
         * @return Intervention
         */
        public function setHeureFin($heureFin)
        {
            $this->HeureFin = $heureFin;
     
            return $this;
        }
     
        /**
         * Get HeureFin
         *
         * @return \DateTime 
         */
        public function getHeureFin()
        {
            return $this->HeureFin;
        }
     
        /**
         * Set Observation
         *
         * @param string $observation
         * @return Intervention
         */
        public function setObservation($observation)
        {
            $this->Observation = $observation;
     
            return $this;
        }
     
        /**
         * Get Observation
         *
         * @return string 
         */
        public function getObservation()
        {
            return $this->Observation;
        }
     
        /**
         * Set technicien
         *
         * @param \MyApp\DebutantProgBundle\Entity\Technicien $technicien
         * @return Intervention
         */
        public function setTechnicien(\MyApp\DebutantProgBundle\Entity\Technicien $technicien = null)
        {
            $this->technicien = $technicien;
     
            return $this;
        }
     
        /**
         * Get technicien
         *
         * @return \MyApp\DebutantProgBundle\Entity\Technicien 
         */
        public function getTechnicien()
        {
            return $this->technicien;
        }
     
        /**
         * Set descriptionTache
         *
         * @param \MyApp\DebutantProgBundle\Entity\Tache $descriptionTache
         * @return Intervention
         */
        public function setDescriptionTache(\MyApp\DebutantProgBundle\Entity\Tache $descriptionTache = null)
        {
            $this->descriptionTache = $descriptionTache;
     
            return $this;
        }
     
        /**
         * Get descriptionTache
         *
         * @return \MyApp\DebutantProgBundle\Entity\Tache 
         */
        public function getDescriptionTache()
        {
            return $this->descriptionTache;
        }
     
        /**
         * Set tache
         *
         * @param \MyApp\DebutantProgBundle\Entity\Tache $tache
         * @return Intervention
         */
        public function setTache(\MyApp\DebutantProgBundle\Entity\Tache $tache = null)
        {
            $this->tache = $tache;
     
            return $this;
        }
     
        /**
         * Get tache
         *
         * @return \MyApp\DebutantProgBundle\Entity\Tache 
         */
        public function getTache()
        {
            return $this->tache;
        }
     
        /**
         * Set typeIntervention
         *
         * @param string $typeIntervention
         * @return Intervention
         */
        public function setTypeIntervention($typeIntervention)
        {
            $this->typeIntervention = $typeIntervention;
     
            return $this;
        }
     
        /**
         * Get typeIntervention
         *
         * @return string 
         */
        public function getTypeIntervention()
        {
            return $this->typeIntervention;
        }
     
        /**
         * Set dureeIntervention
         *
         * @param \DateTime $dureeIntervention
         * @return Intervention
         */
        public function setDureeIntervention($dureeIntervention)
        {
            $this->dureeIntervention = $dureeIntervention;
     
            return $this;
        }
     
        /**
         * Get dureeIntervention
         *
         * @return \DateTime 
         */
        public function getDureeIntervention($interval)
        {
             $interval = this->$heureFin->diff(this->$heureDebut);
            return     $interval;
        }
     
        /**
         * Set liaisonProjet
         *
         * @param \MyApp\DebutantProgBundle\Entity\Projet $liaisonProjet
         * @return Intervention
         */
        public function setLiaisonProjet(\MyApp\DebutantProgBundle\Entity\Projet $liaisonProjet = null)
        {
            $this->liaisonProjet = $liaisonProjet;
     
            return $this;
        }
     
        /**
         * Get liaisonProjet
         *
         * @return \MyApp\DebutantProgBundle\Entity\Projet 
         */
        public function getLiaisonProjet()
        {
            return $this->liaisonProjet;
        }
     
    }
    j'ai besoin de votre aide merci d'avance

  2. #2
    Membre éprouvé
    Homme Profil pro
    Développeur Web
    Inscrit en
    Novembre 2013
    Messages
    739
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Novembre 2013
    Messages : 739
    Points : 1 022
    Points
    1 022
    Par défaut
    Bonjour,
    commence d'abord par tester l'operateur diff sur un simple fichier php (externe à ton projet)
    Une fois c'est bon, tu le mets à ton code .
    Juste un mot , pour affecter une valeur a un objet on met set et non get .
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
     
     public function getDureeIntervention($interval)
        {
             $interval = this->$heureFin->diff(this->$heureDebut);
            return     $interval;
        }
    le code ci dessus n'a plus de valeur.Pense à utiliser les callback Prepersiste et preUpdate pour que le calcul de durée se faits automatiquement pour chaque ajout ou modification de valeurs ( début et fin )

    Bonne journée.

  3. #3
    Membre éprouvé

    Profil pro
    Inscrit en
    Juin 2007
    Messages
    748
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2007
    Messages : 748
    Points : 1 022
    Points
    1 022
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
     
     public function getDureeIntervention($interval)
        {
             $interval = this->$heureFin->diff(this->$heureDebut);
            return     $interval;
        }
    //$interval = this : error $this
    //$interval = $this->$heureFin : error $heureFin dont exist
    et je pense aussi que mais je peux me tromper...

    $interval = $this->heureFin->diff : error $this->heureFin have no method diff
    aille!
    Conception / Dev

  4. #4
    Membre expert
    Avatar de dukoid
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Novembre 2012
    Messages
    2 100
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Novembre 2012
    Messages : 2 100
    Points : 3 004
    Points
    3 004
    Par défaut
    bad:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
     $interval = this->$heureFin->diff(this->$heureDebut);
    good:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
     $interval = $this->heureFin->diff($this->heureDebut);

  5. #5
    Membre du Club
    Homme Profil pro
    Chercheur en informatique
    Inscrit en
    Juillet 2015
    Messages
    53
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Mali

    Informations professionnelles :
    Activité : Chercheur en informatique
    Secteur : Conseil

    Informations forums :
    Inscription : Juillet 2015
    Messages : 53
    Points : 53
    Points
    53
    Par défaut bonjour
    voilà j'ai modifier le code
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
     
    public function getDureeIntervention()
        {
    		$hf=$this->HeureFin;
    		$hd=$this->HeureDebut;
    		$dureeIntervention=$this->$hf->diff($this->$hd);
            return $dureeIntervention;
        }
    mais je recois cette erreur
    FatalErrorException: Error: Cannot access empty property in C:\wamp\www\Symfony\src\MyApp\DebutantProgBundle\Entity\Intervention.php line 311
    voici le nouveau code

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    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
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    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
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    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
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    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
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
     
    <?php
    namespace MyApp\DebutantProgBundle\Entity; 
    use Doctrine\ORM\Mapping as ORM; 
    use Symfony\Component\Validator\Constraints as Assert;
    /**
     * @ORM\Entity
     */
    class Intervention
    {
        /**
         * @ORM\GeneratedValue
         * @ORM\Id
         * @ORM\Column(type="integer")
         */
        private $id;
     
    	/**
    	 * @ORM\Column(type="date")
         */
    	 protected $dateIntervention;
     
        /**
         * @ORM\Column(type="text")
         */    
    	 protected $typeIntervention;
     
        /**
         * @ORM\Column(type="text")
         */    
        protected $libelleIntervention;
    	/**
    	*@ORM\ManyToOne(targetEntity="Technicien")
    	*/
    	public $technicien;
     
    	/**
         * @ORM\Column(type="string",length=45)
         */    
        protected $lieuIntervention;
    	 /**
    	 * @ORM\Column(type="time")   
    	 */
        protected $HeureDebut;	 
     
    	 /**   
    	 * @ORM\Column(type="time")    
    	 */ 
        protected $HeureFin;
    	/**
         * @ORM\Column(type="text")
         */    
        protected $Observation;
    	/**
    	*@ORM\ManyToOne(targetEntity="Projet")
    	*/ 
    	protected $liaisonProjet;
    	 /**   
    	 * @ORM\Column(type="time")    
    	 */ 
        protected $dureeIntervention;
    	/**
         * @ORM\OneToMany(targetEntity="Tache", mappedBy="intervention")
         */
    	public $tache;
    	/**
         * @ORM\ManyToOne(targetEntity="Calendrier")
         */ 
         public	$calendrier;
     
     
     
        /**
         * Get id
         *
         * @return integer 
         */
        public function getId()
        {
            return $this->id;
        }
     
        /**
         * Set dateIntervention
         *
         * @param \DateTime $dateIntervention
         * @return Intervention
         */
        public function setDateIntervention($dateIntervention)
        {
            $this->dateIntervention = $dateIntervention;
     
            return $this;
        }
     
        /**
         * Get dateIntervention
         *
         * @return \DateTime 
         */
        public function getDateIntervention()
        {
            return $this->dateIntervention;
        }
     
        /**
         * Set typeIntervention
         *
         * @param string $typeIntervention
         * @return Intervention
         */
        public function setTypeIntervention($typeIntervention)
        {
            $this->typeIntervention = $typeIntervention;
     
            return $this;
        }
     
        /**
         * Get typeIntervention
         *
         * @return string 
         */
        public function getTypeIntervention()
        {
            return $this->typeIntervention;
        }
     
        /**
         * Set libelleIntervention
         *
         * @param string $libelleIntervention
         * @return Intervention
         */
        public function setLibelleIntervention($libelleIntervention)
        {
            $this->libelleIntervention = $libelleIntervention;
     
            return $this;
        }
     
        /**
         * Get libelleIntervention
         *
         * @return string 
         */
        public function getLibelleIntervention()
        {
            return $this->libelleIntervention;
        }
     
        /**
         * Set lieuIntervention
         *
         * @param string $lieuIntervention
         * @return Intervention
         */
        public function setLieuIntervention($lieuIntervention)
        {
            $this->lieuIntervention = $lieuIntervention;
     
            return $this;
        }
     
        /**
         * Get lieuIntervention
         *
         * @return string 
         */
        public function getLieuIntervention()
        {
            return $this->lieuIntervention;
        }
     
        /**
         * Set HeureDebut
         *
         * @param \DateTime $heureDebut
         * @return Intervention
         */
        public function setHeureDebut($heureDebut)
        {
            $this->HeureDebut = $heureDebut;
     
            return $this;
        }
     
        /**
         * Get HeureDebut
         *
         * @return \DateTime 
         */
        public function getHeureDebut()
        {
            return $this->HeureDebut;
        }
     
        /**
         * Set HeureFin
         *
         * @param \DateTime $heureFin
         * @return Intervention
         */
        public function setHeureFin($heureFin)
        {
            $this->HeureFin = $heureFin;
     
            return $this;
        }
     
        /**
         * Get HeureFin
         *
         * @return \DateTime 
         */
        public function getHeureFin()
        {
            return $this->HeureFin;
        }
     
        /**
         * Set Observation
         *
         * @param string $observation
         * @return Intervention
         */
        public function setObservation($observation)
        {
            $this->Observation = $observation;
     
            return $this;
        }
     
        /**
         * Get Observation
         *
         * @return string 
         */
        public function getObservation()
        {
            return $this->Observation;
        }
     
        /**
         * Set technicien
         *
         * @param \MyApp\DebutantProgBundle\Entity\Technicien $technicien
         * @return Intervention
         */
        public function setTechnicien(\MyApp\DebutantProgBundle\Entity\Technicien $technicien = null)
        {
            $this->technicien = $technicien;
     
            return $this;
        }
     
        /**
         * Get technicien
         *
         * @return \MyApp\DebutantProgBundle\Entity\Technicien 
         */
        public function getTechnicien()
        {
            return $this->technicien;
        }
     
        /**
         * Set liaisonProjet
         *
         * @param \MyApp\DebutantProgBundle\Entity\Projet $liaisonProjet
         * @return Intervention
         */
        public function setLiaisonProjet(\MyApp\DebutantProgBundle\Entity\Projet $liaisonProjet = null)
        {
            $this->liaisonProjet = $liaisonProjet;
     
            return $this;
        }
     
        /**
         * Get liaisonProjet
         *
         * @return \MyApp\DebutantProgBundle\Entity\Projet 
         */
        public function getLiaisonProjet()
        {
            return $this->liaisonProjet;
        }
     
        /**
         * Set dureeIntervention
         *
         * @param \DateTime $dureeIntervention
         * @return Intervention
         */
        public function setDureeIntervention($dureeIntervention)
        {
            $this->dureeIntervention = $dureeIntervention;
     
            return $this;
        }
     
        /**
         * Get dureeIntervention
         *
         * @return \DateTime 
         */
        public function getDureeIntervention()
        {
    		$hf=$this->HeureFin;
    		$hd=$this->HeureDebut;
    		$dureeIntervention=$this->$hf->diff($this->$hd);
            return $dureeIntervention;
        }
        /**
         * Constructor
         */
        public function __construct()
        {
            $this->taches = new \Doctrine\Common\Collections\ArrayCollection();
        }
     
        /**
         * Add taches
         *
         * @param \MyApp\DebutantProgBundle\Entity\Tache $taches
         * @return Intervention
         */
        public function addTache(\MyApp\DebutantProgBundle\Entity\Tache $taches)
        {
            $this->taches[] = $taches;
     
            return $this;
        }
     
        /**
         * Remove taches
         *
         * @param \MyApp\DebutantProgBundle\Entity\Tache $taches
         */
        public function removeTache(\MyApp\DebutantProgBundle\Entity\Tache $taches)
        {
            $this->taches->removeElement($taches);
        }
     
        /**
         * Get taches
         *
         * @return \Doctrine\Common\Collections\Collection 
         */
        public function getTaches()
        {
            return $this->taches;
        }
     
        /**
         * Get tache
         *
         * @return \Doctrine\Common\Collections\Collection 
         */
        public function getTache()
        {
            return $this->tache;
        }
     
        /**
         * Set calendrier
         *
         * @param \MyApp\DebutantProgBundle\Entity\Calendrier $calendrier
         * @return Intervention
         */
        public function setCalendrier(\MyApp\DebutantProgBundle\Entity\Calendrier $calendrier = null)
        {
            $this->calendrier = $calendrier;
     
            return $this;
        }
     
        /**
         * Get calendrier
         *
         * @return \MyApp\DebutantProgBundle\Entity\Calendrier 
         */
        public function getCalendrier()
        {
            return $this->calendrier;
        }
    }

  6. #6
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Dukoid t'a donné la syntaxe exacte à utiliser, pourquoi tu vas encore inventer autre chose de faux ?
    N'oubliez pas de consulter les FAQ PHP et les cours et tutoriels PHP

  7. #7
    Membre éprouvé
    Homme Profil pro
    Développeur Web
    Inscrit en
    Novembre 2013
    Messages
    739
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Novembre 2013
    Messages : 739
    Points : 1 022
    Points
    1 022
    Par défaut
    Suis la réponse de Dukoid, pas besoin de reflechir et d'inventer.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Calcul de durée entre deux dates en années, mois, jours, heures, minutes, secondes et reste
    Par Invité dans le forum Algorithmes et structures de données
    Réponses: 19
    Dernier message: 02/10/2015, 12h31
  2. calcul l'ecart entre deux heures
    Par magictom42 dans le forum Access
    Réponses: 2
    Dernier message: 06/12/2006, 13h40
  3. [Date] Fonction de calcul de durée entre 2 dates
    Par jesus144 dans le forum Collection et Stream
    Réponses: 2
    Dernier message: 10/01/2006, 16h36
  4. Calculer une duree entre 2 dates
    Par d.w.d dans le forum C++
    Réponses: 7
    Dernier message: 02/03/2005, 22h39

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo