Greetings. There is a site in php. Suppose he has a lot of users, and the developers of the site need to roll out the new functionality only for a part of its users in order to test and compile feedback, fix errors and so on.
In the implementation, I see it this way: let's say 100,000 users on the site and I want to roll out the update only for the first 10,000, i.e. the algorithm is as follows: take the user id, if id> = 1 and id <= 10 000, then include a functional for it, if not, then the user does not see it accordingly. I think a bicycle to turn the code of a new functional into conditional blocks?
What do you think?