|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-08-30 17:44 UTC] dams@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 20 01:00:01 2025 UTC |
Description: ------------ i believe is a french traduction bug. the exemple 13-3 say : <?php $cart = new Caddie; $cart−>add_item("10", 1); $another_cart = new Cart; // BUG Here $another_cart−>add_item("0815", 3); ?> Correct expression is : $another_cart = new Caddie; Reproduce code: --------------- not applicable