php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #72882 trader_ht_phasor and trader_ht_sine expect two parameters, one listed
Submitted: 2016-08-18 16:19 UTC Modified: 2018-02-11 23:15 UTC
From: joshua dot saige at gmail dot com Assigned: ab (profile)
Status: Closed Package: Trader (PECL)
PHP Version: Irrelevant OS: Irrelevant
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
43 + 34 = ?
Subscribe to this entry?

 
 [2016-08-18 16:19 UTC] joshua dot saige at gmail dot com
Description:
------------
The functions trader_ht_phasor and trader_ht_sine expect two parameters, the documentation lists one.  The second parameter for both is expected to be a by-reference empty array.

This can be verified at http://svn.php.net/viewvc/pecl/trader/trunk/functions/trader_ht_phasor.c?view=markup line 50 for trader_ht_phasor and http://svn.php.net/viewvc/pecl/trader/trunk/functions/trader_ht_sine.c?view=markup line 50 for trader_ht_sine.

trader_ht_phasor should have the definition of
trader_ht_phasor($real, &$inPhase)

trader_ht_sine should have the definition of
trader_ht_sine($real, &$sine)

Using PHP 7.0.8 with Trader 0.4.0 on Windows Server 2012, IIS 8.5.

Test script:
---------------
<?php

trader_ht_phasor([], []);
trader_ht_phasor([]);
trader_ht_sine([], []);
trader_ht_sine([]);


Expected result:
----------------
Lines 4 & 6 will emit a warning.
Lines 3 & 5 will not.

Actual result:
--------------

Warning: trader_ht_phasor() expects exactly 2 parameters, 1 given in test.php on line 4

Warning: trader_ht_sine() expects exactly 2 parameters, 1 given in test.php on line 6


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2018-02-11 17:17 UTC] ab@php.net
Automatic comment from SVN on behalf of ab
Revision: http://svn.php.net/viewvc/?view=revision&amp;revision=344218
Log: Add basic tests for trader_ht_phasor() and trader_ht_sine(), bug #72882 fixed
 [2018-02-11 23:15 UTC] ab@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: ab
 [2018-02-11 23:15 UTC] ab@php.net
Thanks for the report. Finally fixed in 0.4.1. The documentation is correct. The particular two functions only accept one argument. Trader shouldn't accept any by-ref arguments, instead anything relevant is packed into the return. This was the initial approach and any other functions go by it. Thus, fixed in the extension. 

Thanks!
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 15:01:29 2024 UTC