Git Product home page Git Product logo

Comments (5)

EvilFreelancer avatar EvilFreelancer commented on May 29, 2024 2

Fatal error: Uncaught TypeError: Argument 1 passed to RouterOS\Client::query() must be of the type string, object given, called in D:\xampp\htdocs\mikrotik\a.php on line 30 and defined in D:\xampp\htdocs\mikrotik\vendor\evilfreelancer\routeros-api-php\src\Client.php:114 Stack trace: #0 mikrotik\a.php(30): RouterOS\Client->query(Object(RouterOS\Query)) #1 {main} thrown in mikrotik\vendor\evilfreelancer\routeros-api-php\src\Client.php on line 114

This is a very interesting bug with Query object (fix will be in 1.0.1).

Now about removing issue, I found sollution on mikrotik forum, unfortinatly you can't use filtering if you want to remove something without ID of this object. First you need to get ID of user, then remove this user by their ID. Something like this:

$user = $client->query('/ip/hotspot/user/print', ['name', '34342'])->read(); // Here should be at least one item

// If item's ID is exist, then remove item by it
if (isset($user[0]['.id'])) {
    $userId = $user[0]['.id'];
    $removeUser = $client->query('/ip/hotspot/user/remove', ['.id', $userId])->read();
}

from routeros-api-php.

EvilFreelancer avatar EvilFreelancer commented on May 29, 2024

Hello! Sure it will not work :) But do not worry, try this:

$out = $client->query('/ip/hotspot/user/remove', ['name', '34342'])->read();

This mean: execute query /ip/hotspot/user/remove for items where name is 34342, then return results, you may use ->read(false) for getting RAW results from router.


Same in OOP style:

$query = new Query('/ip/hotspot/user/remove');
$query->where('name', '34342');

$out = $client->query($query)->read();

from routeros-api-php.

nrtszr avatar nrtszr commented on May 29, 2024

hi,
$out = $client->query('/ip/hotspot/user/remove', ['name', '34342'])->read();

Result:
Array ( )

Don't remove

from routeros-api-php.

nrtszr avatar nrtszr commented on May 29, 2024

if this code:
$query = new Query('/ip/hotspot/user/remove');
$query->where('name', '34342');
$out = $client->query($query)->read();

Result:
Fatal error: Uncaught Error: Class 'Query' not found in a.php:23 Stack trace: #0 {main} thrown in

from routeros-api-php.

nrtszr avatar nrtszr commented on May 29, 2024

add
use \RouterOS\Query;

Code:

    $query = new Query('/ip/hotspot/user/remove');
    $query->where('name', '34342');

    $out = $client->query($query)->read();

Result:
Fatal error: Uncaught TypeError: Argument 1 passed to RouterOS\Client::query() must be of the type string, object given, called in D:\xampp\htdocs\mikrotik\a.php on line 30 and defined in D:\xampp\htdocs\mikrotik\vendor\evilfreelancer\routeros-api-php\src\Client.php:114 Stack trace: #0 mikrotik\a.php(30): RouterOS\Client->query(Object(RouterOS\Query)) #1 {main} thrown in mikrotik\vendor\evilfreelancer\routeros-api-php\src\Client.php on line 114

from routeros-api-php.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.